Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 65b920c6ad363819dcdff3d6ff70ed21 > files > 94

php-apc-3.1.15-4.11.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();
	}
}