���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/sharefilefree/cpc/resources/tools/dictionary-import/ |
<?php /** * Generate fixed-width dictionary file * * @author Jose Rodriguez <[email protected]> * @license GPLv3 * @link http://code.google.com/p/cool-php-captcha * @package captcha * */ /** Word lengths */ $minLength = 5; $maxLength = 8; if ($argc < 3) { die("Usage: $argv[0] infile outfile\n"); } if (!file_exists($argv[1])) { die("File '$argv[1]' doesn't exists\n"); } $fp = fopen($argv[1], "r"); $fp2 = fopen($argv[2], "w"); fwrite($fp2, "<?php /*\n"); while ($lin = fgets($fp)) { $lin = trim(strtolower($lin)); $strlen = strlen($lin); if ($strlen>=$minLength && $strlen<=$maxLength && preg_match("/^[a-z]+$/", $lin)) { $lin = str_pad($lin, $maxLength); fwrite($fp2, "$lin\n"); } } fwrite($fp2, "*/ ?>\n"); fclose($fp); fclose($fp2); ?>