variable non définie à l'intérieur de la fonction php

$myId = 0;
function run(){
  global $myId;
	echo $myId;
}
Realy Silly Shark