Sophie

Sophie

distrib > Mandriva > mes5 > x86_64 > by-pkgid > 22642926e35ae331615b1e1646433ffe > files > 76

php-apc-3.1.13-0.3mdvmes5.2.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();
	}
}