I have a VFP8 project that I compiled into a Multithreaded COM server DLL. I am then adding this DLL as a Reference in a C#.NET project, and calling a function from it. This has been working as expected on WinXP and Win2000. Recently, I tried it on Windows 2003 Server, and the call to the...
Thanks. I tried that, but it seems its doesn't quite do what I'm looking for.
Something like:
$phpversion = strval(substr(phpversion(),0,1));
if ($phpversion<=4)
echo "Version 4 or lower";
else
echo "Version 5 or higher";
works as expected.
But the...
Hi
Is it possible to have PHP code support two versions of PHP? In particular, in PHP 4 I have code of the form
$obj->__clone();
Now, in PHP 5 that needs to change to:
clone $obj;
Is it possible to write code for this which will run on both PHP 4 and PHP 5? As a C programmer, I am thinking...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.