質問

For example in my view.jsp:

<img src="<%=request.getContextPath() %>/images/helloWorld.jpg" />
<?php echo "Hello World!"; ?>

or for example I want to get the ContextPath inside a PHP file (index.php). How can I accomplish that?

正しい解決策はありません

他のヒント

You can get this information via PHP without calling out to JSP. To get the location of the current request, use

$_SERVER['REQUEST_URI'];

This will return the complete URI, including the script name. If you want only the directory structure and not the trailing script name, you can use trim() to remove the excess. For convenience, note that the script name is stored here:

$_SERVER['SCRIPT_NAME'];

For additional information and examples, see https://coderwall.com/p/gdam2w

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top