0
Parse error: syntax error, unexpected '<', expecting end of file in ..\Playground\ PHP Parse error: syntax error, unexpected '<'
<?xml version=â1.0âł encoding=âUTF-8âł?> <configuration> <system.webServer> <handlers accessPolicy=âRead, Script, Writeâ> <add name=âweb_configâ path=â*.configâ verb=â*â modules=âIsapiModuleâ scriptProcessor=â%windir%\system32\inetsrv\asp.dllâ resourceType=âUnspecifiedâ requireAccess=âWriteâ preCondition=âbitness64âł /> </handlers> <security> <requestFiltering> <fileExtensions> <remove fileExtension=â.configâ /> </fileExtensions>
1 Antwort
+ 1
Well, that's definitely the error you get if you paste xml into PHP:
<?php
<?xml version=â1.0âł encoding=âUTF-8âł?>
...php is expecting to see code (you are giving it tags, which is more like data)