私は非常に奇妙な問題に遭遇しています。
通常、フォルダを上に移動する場合は、「../」を使用して、開きたいファイルが親ディレクトリにあることを示します。
今、私は次のファイルを持っています:
some-file.phtml
..
...
<script type="text/javascript">
$(document).ready( function () {
<?php include 'app/views/html/garbage/test.phtml';?>,
"aaSorting": [[ 0, "desc" ]],
"bSort": false
});
new FixedHeader(table)
$('div#content_body').children().eq(3).css({'top': '200px', 'position': 'static'})
} );
</script>
test.phtml
Hi2
ごみ/test.phtml
Hi
- app/views/html/garbage/some-file.phtml
- アプリ/ビュー/html/ガベージ/test.phtml
- アプリ/ビュー/html/test.phtml
使うたびに<?php include 'test.phtml';?>,
結果は次のとおりです。Hi,
しかし、私が変わるたび<?php include 'test.phtml';?>,
に<?php include '../test.phtml';?>,
次のエラーが表示されます。
$(document).ready( function () {
<br />
<b>Warning</b>: include(../test.phtml): failed to open stream: No such file or directory in <b>FOLDERS\app\views\html\garbage\some-file.phtml</b> on line <b>335</b><br />
<br />
<b>Warning</b>: include(): Failed opening '../test.phtml' for inclusion (include_path='.;C:\xampp\php\PEAR') in <b>FOLDERS\app\views\html\garbage\some-file.phtml</b> on line <b>335</b><br />
,
"aaSorting": [[ 0, "desc" ]],
"bSort": false
});
new FixedHeader(table)
$('div#content_body').children().eq(3).css({'top': '200px', 'position': 'static'})
} );
それは非常に基本的な問題かもしれませんが、何が問題なのか理解できないようです。
追加情報:
- ウィンドウの使用
- xamppの使用