2013-04-17 104 views
0

我有什麼現在的問題是:slim如何將文件路徑傳遞給變量?

$app->get(/folderBrowse/:path function($app){ 
bla bla bla 

}); // I know this is not using '' or , 
but it's just for example, because I've tried it with many configurations. my 
syntax is correct in my code, because it works fine when I don't pass a path 

,但是當過我的文件路徑傳遞,甚至使用URL編碼它給了我一個404頁。有什麼我失蹤了。

任何幫助將不勝感激。

+0

通過URL發送的東西,如文件路徑如果你有正確的語法後在這裏,有什麼要求用錯誤的語法幫助的目的是什麼? – elclanrs

+0

我的觀點並不是說我的語法錯誤......我試圖說我並沒有試圖具體說明我的語法......我知道它的工作原理。謝謝你的迴應。我試圖弄清楚如何通過slim URL傳遞文件路徑......當我這樣做時,它總會給我一個404錯誤...即使當我使用url編碼方法。是否有一些設置渺茫,我需要改變或什麼? –

回答

0

現在你可以這樣

http://localhost/api/something?file_path=some url encoded string 

$app->get('/something', function() use($app) { 
    $file_path = $app->request()->get('file_path'); 
call some other stuff... etc 

});