0
class Barcode extends CI_Controller
{
function index($barcode, $text='', $format="PNG", $quality=100, $width=160, $height=80, $type=1)
}
我有以下的功能,我想通過在URL中的以下內容:笨通過「姓名/名稱」作爲一個參數中的URL
http://localhost/index.php/barcode/index/1/Test%2FTest/PNG/100/256/80/1
,但我得到了404,當試圖做到這一點。
他這樣做的方式很好。請參閱CI的['uri_to_assoc()'](http://codeigniter.com/user_guide/libraries/uri.html)和PHP的['func_get_args()'](http://php.net/manual/en/function .FUNC-GET-args.php)。這是一個編碼斜線的問題,對我來說,我得到一個*服務器* 404(不是一個CI)。我不知道爲什麼,用'.htaccess'做些什麼? –