By default, PHPStorm only remembers variable names, not values. Therefore, if you start typing $ano , it will give you autocomplete for $anomius , but it does not know what $anomius actually contains.
To make PHPStorm understand where your file is located, try the following:
$anomius = "your_file.php"; require_once($anomius);
elipoultorak
source share