Fix Examples/php/pointer to work with PHP 5.5

With this, all examples work with PHP 5.5 for me.
This commit is contained in:
Miklos Vajna 2013-11-18 21:50:33 +01:00 committed by Olly Betts
commit 227192f80a
3 changed files with 28 additions and 10 deletions

View file

@ -15,7 +15,7 @@
print " c = $c\n";
# Call the add() function wuth some pointers
add(&$a,&$b,&$c);
add($a,$b,$c);
print " $a + $b = $c\n";