You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes, this is a expected behavior and caused by static $lineInst = array();
I don't think it's necessary to display the same expression multiple times in such cases.
But if you want this, just remove the static keyword in the code above.
Seems like "data-exptxt" only gets set once when r() is used inside a loop. For example:
foreach([1,2,3,4,5] as $n) { r($n); }
The result of the above code is that only the first output has "data-exptxt" set. All others do not.
The text was updated successfully, but these errors were encountered: