update page now

Voting

: max(two, one)?
(Example: nine)

The Note You're Voting On

german dot bernhardt at gmail dot com
10 years ago
<?php
# ERROR GLOBAL VARIABLES IMPORT

$tester=true;

function tester(){
 global $tester;
 var_dump($tester);
}

tester(); // PRINT -> bool(true)

class test extends Thread{
 public function run(){
  global $tester;
  tester(); // PRINT -> NULL
 }
}
$workers=new test();
$workers->start();

?>

<< Back to user notes page

To Top