How can i include php script in perl application
working in windows environment,
System config开发者_运维技巧uration Winxp, Wamp in local disk E,
Strawberry PERL package installed in local disk c,
how to include PHP script in PERL.
What package i should install to call php script in perl.
Everywhere running CLI is similar, type full path to executable binary of applpication and specify arguments separated by space.
system("E:/wamp/php/bin/php.exe", "d:/script/to/run.php", "argumentPasssedToPhpScript");
精彩评论