Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 3447e39793d15911bf3fc0a8996e2c90 > files > 94

php-apc-3.1.15-4.10.mga4.x86_64.rpm

<?php
namespace Foo\Bar;

function sort() {
	$a = array(3,2,1,4);
	\sort($a);  // global scoping
	var_dump($a);
	return "IT WORKS";
}
class Baz {
	public $i = 1;
	protected $f = 3.14;
	private $s = "hello world";

	public function foo() {
		sort();
	}
}