34+ results for '$i++;' (0 ms)
Not the results you expected?
ezisbn10to13converter.php (https://bitbucket.org/ericsagnes/ezpublish-multisite.git) PHP · 355 lines
ConvertCharset.class.php (https://github.com/mysnip/Core.git) PHP · 307 lines
listGridCMS_PROJECTS.php (https://github.com/juddy/GIP.git) PHP · 309 lines
contextmoveq_form.php (https://github.com/jarednipper/HSU-common-code.git) PHP · 112 lines
default.php (https://github.com/raeldc/nooku-server.git) PHP · 122 lines
GisGeometryCollection.php (git://github.com/phpmyadmin/phpmyadmin.git) PHP · 385 lines
list.usergroups.php (https://github.com/iconifyit/SkyBlue-CMS.git) PHP · 112 lines
AbstractListing.php (https://github.com/pimcore/pimcore.git) PHP · 607 lines
sql.php (https://github.com/shafiqissani/ASTRA-College-Website.git) PHP · 242 lines
60 $found_delimiter = false;
61 // Find first interesting character, several strpos seem to be faster than simple loop in php:
62 //while (($i < $len) && (strpos('\'";#-/', $buffer[$i]) === FALSE)) $i++;
63 //if ($i == $len) break;
64 $oi = $i;
140 break;
141 }
142 $i++;
143 // Aren't we at the end?
144 if ($finished && $i == $len) {
189 }
190 }
191 $i++;
192 }
193 // Skip last char
Template.php (https://github.com/regality/zombie-core.git) PHP · 169 lines
move.php (https://github.com/markn86/moodle.git) PHP · 188 lines
ContentTypeAuthor.pm (https://github.com/usualoma/movabletype.git) Perl · 180 lines
html.php (https://github.com/dslfaithdev/soEmail.git) PHP · 185 lines
config.html (https://github.com/galitush2005/RTL-BIDI-Hebrew-Moodle-Plugins.git) HTML · 165 lines
Invoice.php (https://bitbucket.org/kdms/sh-magento.git) PHP · 170 lines
frontend-nav-menu.php (https://gitlab.com/mostafame/team_website) PHP · 280 lines
PrintZoneFile.php (https://bitbucket.org/droidzone/dns-manager.git) PHP · 176 lines
53 if ( $MX_PREF[$i] != "" && $MX_VAL[$i] != "") {
54 print $domain. ".". spc(5)."IN".spc(5).'MX'.spc(5).$MX_PREF[$i].spc(5).$MX_VAL[$i].'<br />';
55 $i++;
56 }
87 if ( $TXT_PREF[$i] != "" && $TXT_VAL[$i] != "") {
88 print $domain. ".". spc(5).$TXT_PREF[$i]. spc(5)."IN".spc(5).'TXT'.spc(5).$TXT_VAL[$i].'<br />';
89 $i++;
90 }
91 }
100 if ( $CN_VAL[$i] != "" && $CN_PREF[$i] != "" && $CN_NAME[$i] != "") {
101 print $CN_VAL[$i].".".$domain. ".". spc(5).$CN_PREF[$i]. spc(5)."IN".spc(5).'CNAME'.spc(5).$CN_NAME[$i].'<br />';
102 $i++;
103 }