Sophie

Sophie

distrib > Mandriva > 9.1 > i586 > by-pkgid > 3c88344d1f3d15057277d028d0022277 > files > 490

swig-1.3.11-4mdk.i586.rpm

<?

dl("libexample.so");

# Call our gcd() function

$x = 42;
$y = 105;
$g = gcd($x,$y);
print "The gcd of $x and $y is $g\n";

# Manipulate the Foo global variable

# Output its current value
print "Foo = " . $Foo . "\n";

# Change its value
$Foo = 3.1415926;

# See if the change took effect ( this isn't a good example for php, see
#				  manual for why. )
print "Foo = "  . $Foo . "\n";

?>