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