~ubuntu-branches/ubuntu/oneiric/swig1.3/oneiric

« back to all changes in this revision

Viewing changes to Examples/php4/simple/runme.php4

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2009-11-15 14:00:28 UTC
  • mfrom: (1.2.9 upstream) (2.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091115140028-me7amr2rie8zz1xn
Tags: 1.3.40-2ubuntu1
* Merge from Debian testing (LP: #356529), remaining changes:
  - Drop libchicken-dev from the build-depends (it's in universe)
  - Remove Pike from package description and from configure flags
  - drop "--without-mzscheme", we don't have it in our build-depends
  - use php-config5
  - Clean Runtime/ as well.
  - debian/rules (clean): Remove Lib/ocaml/swigp4.ml.
* debian/rules: Remove hardcoded python version.
* Remove upper limit for python from Build-Depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
 
3
 
require "example.php";
4
 
 
5
 
# Call our gcd() function
6
 
 
7
 
$x = "42 aaa";
8
 
$y = 105;
9
 
$g = gcd($x,$y);
10
 
print "The gcd of $x and $y is $g\n";
11
 
 
12
 
# Manipulate the Foo global variable
13
 
 
14
 
# Output its current value
15
 
print "Foo = " . Foo_get() . "\n";
16
 
 
17
 
# Change its value
18
 
Foo_set(3.1415926);
19
 
 
20
 
# See if the change took effect ( this isn't a good example for php, see
21
 
#                                 manual for why. )
22
 
print "Foo = "  . Foo_get() . "\n";
23
 
print_Foo();
24
 
 
25
 
?>