<?php $string = 'hey'; foreach (range('a', 'z') as $i) { if ($string == '$i') { echo $i; } } ?>
为什么这不起作用?请告诉我.
php
php ×1