我试图弄清楚我被赋予的功能是如何工作的 – 或者说不起作用.有问题的区域包括这样的数组表示法:
$small[$end[$i]{0}]
我认为这个想法是将“0”附加到$end [$i]的值,并将其用于$small的索引.但它在PHP5.3中不起作用.这是一种弃用的语法,它是否正在尝试按我认为的那样做?
它从$end [$i]字符串中获取第一个字符,然后使用该字符作为数组键访问$small数组.
原文链接:https://www.f2er.com/php/130413.html编辑:
Since
$foo=200; $foo[0] != 2;//==''
,
what do you recommend for getting the
leftmost digit when the magnitude of
the number is unknown?
如果你使用的是强类型语言,我有一些你可能会对我的另一个答案感兴趣的指标:How can you get the first digit in an int (C#)?