Skip to content

Instantly share code, notes, and snippets.

@EvanDotPro
Created December 16, 2011 18:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EvanDotPro/1487264 to your computer and use it in GitHub Desktop.
Save EvanDotPro/1487264 to your computer and use it in GitHub Desktop.
Error suppressions in ZF2 master
[ecoury@evan-laptop zf2 (master)]$ find ./library/Zend -type f -name '*.php' | xargs grep -ne '@[A-Za-z_][A-Za-z0-9_]*('
./library/Zend/Ldap/Ldap.php:162: $ret = @ldap_get_option($this->_resource, LDAP_OPT_ERROR_NUMBER, $err);
./library/Zend/Ldap/Ldap.php:191: $estr1 = @ldap_error($this->_resource);
./library/Zend/Ldap/Ldap.php:193: $estr1 = @ldap_err2str($errorCode);
./library/Zend/Ldap/Ldap.php:199: @ldap_get_option($this->_resource, LDAP_OPT_ERROR_STRING, $estr2);
./library/Zend/Ldap/Ldap.php:646: @ldap_unbind($this->_resource);
./library/Zend/Ldap/Ldap.php:719: $resource = ($useUri) ? @ldap_connect($this->_connectString) : @ldap_connect($host, $port);
./library/Zend/Ldap/Ldap.php:726: if (@ldap_set_option($resource, LDAP_OPT_PROTOCOL_VERSION, 3) &&
./library/Zend/Ldap/Ldap.php:727: @ldap_set_option($resource, LDAP_OPT_REFERRALS, $optReferrals)) {
./library/Zend/Ldap/Ldap.php:728: if ($useSsl || !$useStartTls || @ldap_start_tls($resource)) {
./library/Zend/Ldap/Ldap.php:802: if (@ldap_bind($this->_resource, $username, $password)) {
./library/Zend/Ldap/Ldap.php:881: $search = @ldap_list($this->getResource(), $basedn, $filter, $attributes);
./library/Zend/Ldap/Ldap.php:884: $search = @ldap_read($this->getResource(), $basedn, $filter, $attributes);
./library/Zend/Ldap/Ldap.php:888: $search = @ldap_search($this->getResource(), $basedn, $filter, $attributes);
./library/Zend/Ldap/Ldap.php:896: $isSorted = @ldap_sort($this->getResource(), $search, $sort);
./library/Zend/Ldap/Ldap.php:1121: $isAdded = @ldap_add($this->getResource(), $dn->toString(), $entry);
./library/Zend/Ldap/Ldap.php:1159: $isModified = @ldap_modify($this->getResource(), $dn->toString(), $entry);
./library/Zend/Ldap/Ldap.php:1209: $isDeleted = @ldap_delete($this->getResource(), $dn);
./library/Zend/Ldap/Ldap.php:1231: $search = @ldap_list($this->getResource(), $parentDn, '(objectClass=*)', array('dn'));
./library/Zend/Ldap/Ldap.php:1232: for ($entry = @ldap_first_entry($this->getResource(), $search);
./library/Zend/Ldap/Ldap.php:1234: $entry = @ldap_next_entry($this->getResource(), $entry)) {
./library/Zend/Ldap/Ldap.php:1235: $childDn = @ldap_get_dn($this->getResource(), $entry);
./library/Zend/Ldap/Ldap.php:1241: @ldap_free_result($search);
./library/Zend/Ldap/Ldap.php:1322: $isOK = @ldap_rename($this->getResource(), $from, $newRdn, $newParent, true);
./library/Zend/Ldap/Collection/DefaultIterator.php:91: $this->_itemCount = @ldap_count_entries($ldap->getResource(), $resultId);
./library/Zend/Ldap/Collection/DefaultIterator.php:111: $isClosed = @ldap_free_result($this->_resultId);
./library/Zend/Ldap/Collection/DefaultIterator.php:207: $name = @ldap_first_attribute($this->_ldap->getResource(), $this->_current,
./library/Zend/Ldap/Collection/DefaultIterator.php:210: $data = @ldap_get_values_len($this->_ldap->getResource(), $this->_current, $name);
./library/Zend/Ldap/Collection/DefaultIterator.php:228: $name = @ldap_next_attribute($this->_ldap->getResource(), $this->_current,
./library/Zend/Ldap/Collection/DefaultIterator.php:247: $currentDn = @ldap_get_dn($this->_ldap->getResource(), $this->_current);
./library/Zend/Ldap/Collection/DefaultIterator.php:266: $this->_current = @ldap_next_entry($this->_ldap->getResource(), $this->_current);
./library/Zend/Ldap/Collection/DefaultIterator.php:288: $this->_current = @ldap_first_entry($this->_ldap->getResource(), $this->_resultId);
./library/Zend/Pdf/PdfParser/StructureParser.php:354: if (($pdfFile = @fopen($source, 'rb')) === false ) {
./library/Zend/Pdf/InternalType/StreamFilter/Compression/Flate.php:61: if (($output = @gzcompress($data)) === false) {
./library/Zend/Pdf/InternalType/StreamFilter/Compression/Flate.php:93: if (($output = @gzuncompress($data)) === false) {
./library/Zend/Pdf/PdfDocument.php:247: if (($file = @fopen($filename, $updateOnly ? 'ab':'wb')) === false ) {
./library/Zend/Pdf/BinaryParser/DataSource/File.php:87: if (($this->_size = @filesize($filePath)) === false) {
./library/Zend/Pdf/BinaryParser/DataSource/File.php:90: if (($this->_fileResource = @fopen($filePath, 'rb')) === false) {
./library/Zend/Pdf/BinaryParser/DataSource/File.php:104: @fclose($this->_fileResource);
./library/Zend/Pdf/BinaryParser/DataSource/File.php:123: $bytes = @fread($this->_fileResource, $byteCount);
./library/Zend/Pdf/BinaryParser/DataSource/File.php:177: $result = @fseek($this->_fileResource, $offset, SEEK_SET);
./library/Zend/Pdf/Resource/Image/Tiff.php:148: if (($imageFile = @fopen($imageFileName, 'rb')) === false ) {
./library/Zend/Pdf/Resource/Image/Jpeg.php:102: if (($imageFile = @fopen($imageFileName, 'rb')) === false ) {
./library/Zend/Pdf/Resource/Image/Png.php:83: if (($imageFile = @fopen($imageFileName, 'rb')) === false ) {
./library/Zend/Db/Adapter/Mysqli.php:285: $option = @constant(strtoupper($option));
./library/Zend/Db/Adapter/Mysqli.php:295: $_isConnected = @mysqli_real_connect(
./library/Zend/Db/Statement/Db2.php:64: $this->_stmt = @db2_prepare($connection, $sql);
./library/Zend/Db/Statement/Db2.php:196: $retval = @db2_execute($this->_stmt, $params);
./library/Zend/Db/Statement/Db2.php:198: $retval = @db2_execute($this->_stmt);
./library/Zend/Db/Statement/Db2.php:308: $num = @db2_num_rows($this->_stmt);
./library/Zend/Db/Statement/Oracle.php:120: $retval = @oci_bind_by_name($this->_stmt, $parameter, $variable, $length, $type);
./library/Zend/Db/Statement/Oracle.php:236: if (!@oci_bind_by_name($this->_stmt, $name, $params[$name], -1)) {
./library/Zend/Db/Statement/Oracle.php:246: $retval = @oci_execute($this->_stmt, $this->_adapter->_getExecuteMode());
./library/Zend/XmlRpc/Request/Http.php:68: $xml = @file_get_contents('php://input');
./library/Zend/Navigation/Container.php:360: if (@preg_match('/(find(?:One|All)?By)(.+)/', $method, $match)) {
./library/Zend/Mail/Protocol/Imap.php:99: $this->_socket = @fsockopen($host, $port, $errno, $errstr, self::TIMEOUT_CONNECTION);
./library/Zend/Mail/Protocol/Imap.php:126: $line = @fgets($this->_socket);
./library/Zend/Mail/Protocol/Imap.php:333: if (@fwrite($this->_socket, $line . ' ' . $token[0] . "\r\n") === false) {
./library/Zend/Mail/Protocol/Imap.php:345: if (@fwrite($this->_socket, $line . "\r\n") === false) {
./library/Zend/Mail/Protocol/Pop3.php:106: $this->_socket = @fsockopen($host, $port, $errno, $errstr, self::TIMEOUT_CONNECTION);
./library/Zend/Mail/Protocol/Pop3.php:143: $result = @fputs($this->_socket, $request . "\r\n");
./library/Zend/Mail/Protocol/Pop3.php:159: $result = @fgets($this->_socket);
./library/Zend/Mail/Message.php:58: $params['raw'] = @file_get_contents($params['file']);
./library/Zend/Mail/Storage/Maildir.php:291: $dh = @opendir($dirname . '/cur/');
./library/Zend/Mail/Storage/Maildir.php:298: $dh = @opendir($dirname . '/new/');
./library/Zend/Mail/Storage/Maildir.php:322: @list($uniq, $info) = explode(':', $entry, 2);
./library/Zend/Mail/Storage/Maildir.php:323: @list(,$size) = explode(',', $uniq, 2);
./library/Zend/Mail/Storage/Maildir.php:330: @list($version, $flags) = explode(',', $info, 2);
./library/Zend/Mail/Storage/Writable/Maildir.php:88: if (!@mkdir($dir . DIRECTORY_SEPARATOR . $subdir)) {
./library/Zend/Mail/Storage/Writable/Maildir.php:181: if (!@mkdir($fulldir) || !@mkdir($fulldir . DIRECTORY_SEPARATOR . 'cur')) {
./library/Zend/Mail/Storage/Writable/Maildir.php:499: @unlink($temp_file['filename']);
./library/Zend/Mail/Storage/Writable/Maildir.php:562: @unlink($temp_file['filename']);
./library/Zend/Mail/Storage/Writable/Maildir.php:627: @unlink($temp_file['filename']);
./library/Zend/Mail/Storage/Writable/Maildir.php:656: if (!@rename($filedata['filename'], $new_filename)) {
./library/Zend/Mail/Storage/Writable/Maildir.php:681: if (!@unlink($filename)) {
./library/Zend/Mail/Storage/Writable/Maildir.php:718: $fh = @fopen($this->_rootdir . 'maildirsize', 'r');
./library/Zend/Mail/Storage/Folder/Maildir.php:113: $dh = @opendir($this->_rootdir);
./library/Zend/Mail/Storage/Folder/Maildir.php:180: @list($entry, $subname) = @explode($this->_delim, $subname, 2);
./library/Zend/Mail/Storage/Folder/Mbox.php:115: $dh = @opendir($currentDir);
./library/Zend/Mail/Storage/Folder/Mbox.php:157: @list($entry, $subname) = @explode(DIRECTORY_SEPARATOR, $subname, 2);
./library/Zend/Mail/Storage/Mbox.php:229: $file = @fopen($file, 'r');
./library/Zend/Mail/Storage/Mbox.php:245: @fclose($file);
./library/Zend/Mail/Storage/Mbox.php:264: $this->_fh = @fopen($filename, 'r');
./library/Zend/Mail/Storage/Mbox.php:272: @fclose($this->_fh);
./library/Zend/Mail/Storage/Mbox.php:306: @fclose($this->_fh);
./library/Zend/Mail/Storage/Mbox.php:396: if ($this->_filemtime != @filemtime($this->_filename)) {
./library/Zend/Mail/Storage/Mbox.php:400: $this->_fh = @fopen($this->_filename, 'r');
./library/Zend/Mail/AbstractProtocol.php:260: $this->_socket = @stream_socket_client($remote, $errorNum, $errorStr, self::TIMEOUT_CONNECTION);
./library/Zend/Log/Filter/Message.php:52: if (@preg_match($regexp, '') === false) {
./library/Zend/Log/Writer/Stream.php:78: if (! $this->_stream = @fopen($streamOrUrl, $mode, false)) {
./library/Zend/Log/Writer/Stream.php:132: if (false === @fwrite($this->_stream, $line)) {
./library/Zend/Service/Technorati/Utils.php:95: if (@strtotime($input) !== FALSE) {
./library/Zend/Service/Amazon/S3/S3.php:468: $data = @file_get_contents($path);
./library/Zend/Service/Amazon/S3/S3.php:494: $data = @fopen($path, "rb");
./library/Zend/Service/WindowsAzure/Storage.php:389: $xml = @simplexml_load_string($response->getBody());
./library/Zend/Service/WindowsAzure/Storage.php:461: $tz = @date_default_timezone_get();
./library/Zend/Service/WindowsAzure/Storage.php:462: @date_default_timezone_set('UTC');
./library/Zend/Service/WindowsAzure/Storage.php:468: $returnValue = str_replace('+00:00', '.0000000Z', @date('c', $timestamp));
./library/Zend/Service/WindowsAzure/Storage.php:469: @date_default_timezone_set($tz);
./library/Zend/Service/WindowsAzure/Storage/Blob/Stream.php:149: $fh = @fopen($this->_temporaryFileName, $mode);
./library/Zend/Service/WindowsAzure/Storage/Blob/Stream.php:185: @fclose($this->_temporaryFileHandle);
./library/Zend/Service/WindowsAzure/Storage/Blob/Stream.php:207: @unlink($this->_temporaryFileName);
./library/Zend/Service/WindowsAzure/Storage/Blob/Stream.php:214: @unlink($this->_temporaryFileName);
./library/Zend/Service/WindowsAzure/Storage/Blob/Stream.php:319: @unlink($this->_temporaryFileName);
./library/Zend/Service/Nirvanix/Response.php:56: $this->sxml = @simplexml_load_string($xml);
./library/Zend/Config/Writer/AbstractFileWriter.php:118: $result = @file_put_contents($this->_filename, $configString, $flags);
./library/Zend/Json/Server/Cache.php:56: if (0 === @file_put_contents($filename, $server->getServiceMap()->toJson())) {
./library/Zend/Json/Server/Cache.php:82: if (false === ($smd = @file_get_contents($filename))) {
./library/Zend/TimeSync/Protocol.php:106: $socket = @fsockopen($this->_timeserver, $this->_port, $errno, $errstr,
./library/Zend/TimeSync/Protocol.php:123: @fclose($this->_socket);
./library/Zend/OpenId/Provider/Storage/File.php:74: if (!@mkdir($this->_dir, 0700, 1)) {
./library/Zend/OpenId/Provider/Storage/File.php:106: $lock = @fopen($this->_dir . '/assoc.lock', 'w+');
./library/Zend/OpenId/Provider/Storage/File.php:115: $f = @fopen($name, 'w+');
./library/Zend/OpenId/Provider/Storage/File.php:145: $lock = @fopen($this->_dir . '/assoc.lock', 'w+');
./library/Zend/OpenId/Provider/Storage/File.php:154: $f = @fopen($name, 'r');
./library/Zend/OpenId/Provider/Storage/File.php:167: @unlink($name);
./library/Zend/OpenId/Provider/Storage/File.php:190: $lock = @fopen($this->_dir . '/assoc.lock', 'w+');
./library/Zend/OpenId/Provider/Storage/File.php:199: @unlink($name);
./library/Zend/OpenId/Provider/Storage/File.php:220: $lock = @fopen($this->_dir . '/user.lock', 'w+');
./library/Zend/OpenId/Provider/Storage/File.php:229: $f = @fopen($name, 'x');
./library/Zend/OpenId/Provider/Storage/File.php:254: $lock = @fopen($this->_dir . '/user.lock', 'w+');
./library/Zend/OpenId/Provider/Storage/File.php:263: $f = @fopen($name, 'r');
./library/Zend/OpenId/Provider/Storage/File.php:295: $lock = @fopen($this->_dir . '/user.lock', 'w+');
./library/Zend/OpenId/Provider/Storage/File.php:304: $f = @fopen($name, 'r');
./library/Zend/OpenId/Provider/Storage/File.php:335: $lock = @fopen($this->_dir . '/user.lock', 'w+');
./library/Zend/OpenId/Provider/Storage/File.php:344: @unlink($name);
./library/Zend/OpenId/Provider/Storage/File.php:363: $lock = @fopen($this->_dir . '/user.lock', 'w+');
./library/Zend/OpenId/Provider/Storage/File.php:372: $f = @fopen($name, 'r');
./library/Zend/OpenId/Provider/Storage/File.php:405: $lock = @fopen($this->_dir . '/user.lock', 'w+');
./library/Zend/OpenId/Provider/Storage/File.php:414: $f = @fopen($name, 'r+');
./library/Zend/OpenId/Consumer/Storage/File.php:74: if (!@mkdir($this->_dir, 0700, 1)) {
./library/Zend/OpenId/Consumer/Storage/File.php:114: $lock = @fopen($this->_dir . '/assoc.lock', 'w+');
./library/Zend/OpenId/Consumer/Storage/File.php:123: $f = @fopen($name1, 'w+');
./library/Zend/OpenId/Consumer/Storage/File.php:131: @unlink($name2);
./library/Zend/OpenId/Consumer/Storage/File.php:138: $f2 = @fopen($name2, 'w+');
./library/Zend/OpenId/Consumer/Storage/File.php:142: @unlink($name1);
./library/Zend/OpenId/Consumer/Storage/File.php:171: $lock = @fopen($this->_dir . '/assoc.lock', 'w+');
./library/Zend/OpenId/Consumer/Storage/File.php:180: $f = @fopen($name1, 'r');
./library/Zend/OpenId/Consumer/Storage/File.php:194: @unlink($name2);
./library/Zend/OpenId/Consumer/Storage/File.php:195: @unlink($name1);
./library/Zend/OpenId/Consumer/Storage/File.php:224: $lock = @fopen($this->_dir . '/assoc.lock', 'w+');
./library/Zend/OpenId/Consumer/Storage/File.php:233: $f = @fopen($name2, 'r');
./library/Zend/OpenId/Consumer/Storage/File.php:246: @unlink($name2);
./library/Zend/OpenId/Consumer/Storage/File.php:248: @unlink($name1);
./library/Zend/OpenId/Consumer/Storage/File.php:271: $lock = @fopen($this->_dir . '/assoc.lock', 'w+');
./library/Zend/OpenId/Consumer/Storage/File.php:280: $f = @fopen($name1, 'r');
./library/Zend/OpenId/Consumer/Storage/File.php:291: @unlink($name2);
./library/Zend/OpenId/Consumer/Storage/File.php:292: @unlink($name1);
./library/Zend/OpenId/Consumer/Storage/File.php:319: $lock = @fopen($this->_dir . '/discovery.lock', 'w+');
./library/Zend/OpenId/Consumer/Storage/File.php:328: $f = @fopen($name, 'w+');
./library/Zend/OpenId/Consumer/Storage/File.php:358: $lock = @fopen($this->_dir . '/discovery.lock', 'w+');
./library/Zend/OpenId/Consumer/Storage/File.php:367: $f = @fopen($name, 'r');
./library/Zend/OpenId/Consumer/Storage/File.php:380: @unlink($name);
./library/Zend/OpenId/Consumer/Storage/File.php:403: $lock = @fopen($this->_dir . '/discovery.lock', 'w+');
./library/Zend/OpenId/Consumer/Storage/File.php:412: @unlink($name);
./library/Zend/OpenId/Consumer/Storage/File.php:431: $lock = @fopen($this->_dir . '/nonce.lock', 'w+');
./library/Zend/OpenId/Consumer/Storage/File.php:440: $f = @fopen($name, 'x');
./library/Zend/OpenId/Consumer/Storage/File.php:462: $lock = @fopen($this->_dir . '/nonce.lock', 'w+');
./library/Zend/OpenId/Consumer/Storage/File.php:469: @unlink($name);
./library/Zend/OpenId/Consumer/Storage/File.php:479: @unlink($name);
./library/Zend/Captcha/Image.php:505: $img = @imagecreatefrompng($this->_startImage);
./library/Zend/Serializer/Adapter/PhpCode.php:64: $eval = @eval('$ret=' . $code . ';');
./library/Zend/Serializer/Adapter/PhpSerialize.php:91: $ret = @unserialize($serialized);
./library/Zend/Barcode/Renderer/Image.php:332: @imagedestroy($this->resource);
./library/Zend/Cache/Backend/StaticBackend.php:233: @chmod($file, $this->_octdec($this->_options['cache_file_umask']));
./library/Zend/Cache/Backend/StaticBackend.php:258: && !@mkdir($path, $this->_options['cache_directory_umask'], true)) {
./library/Zend/Cache/Backend/Sqlite.php:100: @sqlite_close($this->_getConnection());
./library/Zend/Cache/Backend/Sqlite.php:118: $row = @sqlite_fetch_array($result);
./library/Zend/Cache/Backend/Sqlite.php:136: $row = @sqlite_fetch_array($result);
./library/Zend/Cache/Backend/Sqlite.php:160: $data = @sqlite_escape_string($data);
./library/Zend/Cache/Backend/Sqlite.php:191: $result1 = @sqlite_fetch_single($res);
./library/Zend/Cache/Backend/Sqlite.php:233: while ($id = @sqlite_fetch_single($res)) {
./library/Zend/Cache/Backend/Sqlite.php:249: while ($id = @sqlite_fetch_single($res)) {
./library/Zend/Cache/Backend/Sqlite.php:272: $rows = @sqlite_fetch_all($res, SQLITE_ASSOC);
./library/Zend/Cache/Backend/Sqlite.php:302: $rows = @sqlite_fetch_all($res, SQLITE_ASSOC);
./library/Zend/Cache/Backend/Sqlite.php:312: $nbr = (int) @sqlite_fetch_single($res);
./library/Zend/Cache/Backend/Sqlite.php:341: $rows = @sqlite_fetch_all($res, SQLITE_ASSOC);
./library/Zend/Cache/Backend/Sqlite.php:397: $rows = @sqlite_fetch_all($res, SQLITE_ASSOC);
./library/Zend/Cache/Backend/Sqlite.php:407: $row = @sqlite_fetch_array($res, SQLITE_ASSOC);
./library/Zend/Cache/Backend/Sqlite.php:429: $expire = @sqlite_fetch_single($res);
./library/Zend/Cache/Backend/Sqlite.php:491: $this->_db = @sqlite_open($this->_options['cache_db_complete_path']);
./library/Zend/Cache/Backend/Sqlite.php:509: $res = @sqlite_query($db, $query);
./library/Zend/Cache/Backend/Sqlite.php:530: @sqlite_close($this->_getConnection());
./library/Zend/Cache/Backend/Sqlite.php:583: $row = @sqlite_fetch_array($result);
./library/Zend/Cache/Backend/ZendPlatform.php:260: $d = @dir($dir);
./library/Zend/Cache/Backend/ZendPlatform.php:278: if ((time() - @filemtime($file)) > $this->_directives['lifetime']) {
./library/Zend/Cache/Backend/ZendPlatform.php:300: if (!@unlink($file)) {
./library/Zend/Cache/Backend/ZendPlatform.php:310: return @touch($file, time() - 2*abs($this->_directives['lifetime']));
./library/Zend/Cache/Backend/File.php:547: $tmp = @unserialize($result);
./library/Zend/Cache/Backend/File.php:611: if (!@unlink($file)) {
./library/Zend/Cache/Backend/File.php:645: $glob = @glob($dir . $prefix . '--*');
./library/Zend/Cache/Backend/File.php:724: @rmdir($file);
./library/Zend/Cache/Backend/File.php:738: $glob = @glob($dir . $prefix . '--*');
./library/Zend/Cache/Backend/File.php:918: @mkdir($part, $this->_options['hashed_directory_umask']);
./library/Zend/Cache/Backend/File.php:919: @chmod($part, $this->_options['hashed_directory_umask']); // see #ZF-320 (this line is required in some configurations)
./library/Zend/Cache/Backend/File.php:956: $f = @fopen($file, 'rb');
./library/Zend/Cache/Backend/File.php:958: if ($this->_options['file_locking']) @flock($f, LOCK_SH);
./library/Zend/Cache/Backend/File.php:960: if ($this->_options['file_locking']) @flock($f, LOCK_UN);
./library/Zend/Cache/Backend/File.php:961: @fclose($f);
./library/Zend/Cache/Backend/File.php:976: $f = @fopen($file, 'ab+');
./library/Zend/Cache/Backend/File.php:978: if ($this->_options['file_locking']) @flock($f, LOCK_EX);
./library/Zend/Cache/Backend/File.php:981: $tmp = @fwrite($f, $string);
./library/Zend/Cache/Backend/File.php:985: @fclose($f);
./library/Zend/Cache/Backend/File.php:987: @chmod($file, $this->_options['cache_file_umask']);
./library/Zend/Cache/Frontend/FunctionFrontend.php:152: $tmp = @serialize($callback);
./library/Zend/Cache/Frontend/FunctionFrontend.php:167: $argsStr = @serialize(array_values($args));
./library/Zend/Cache/Frontend/File.php:112: $this->_masterFile_mtimes[$i] = @filemtime($masterFile);
./library/Zend/Cache/Cache.php:256: if (!$fh = @fopen($filename, 'r', true)) {
./library/Zend/Cache/Cache.php:259: @fclose($fh);
./library/Zend/Locale/Format.php:1288: return (@preg_match('/\pL/u', 'a')) ? true : false;
./library/Zend/Http/Client.php:623: if (false === ($fp = @fopen($this->streamName, "w+b"))) {
./library/Zend/Http/Client.php:950: if (($data = @file_get_contents($filename)) === false) {
./library/Zend/Http/Client.php:1177: self::$_fileInfoDb = @finfo_open(FILEINFO_MIME);
./library/Zend/Http/Client/Adapter/Proxy.php:169: if (! @fwrite($this->socket, $request)) {
./library/Zend/Http/Client/Adapter/Proxy.php:210: if (! @fwrite($this->socket, $request)) {
./library/Zend/Http/Client/Adapter/Proxy.php:217: while ($line = @fgets($this->socket)) {
./library/Zend/Http/Client/Adapter/Socket.php:214: $this->socket = @stream_socket_client($host . ':' . $port,
./library/Zend/Http/Client/Adapter/Socket.php:281: if (! @fwrite($this->socket, $request)) {
./library/Zend/Http/Client/Adapter/Socket.php:305: while (($line = @fgets($this->socket)) !== false) {
./library/Zend/Http/Client/Adapter/Socket.php:345: $line = @fgets($this->socket);
./library/Zend/Http/Client/Adapter/Socket.php:374: $line = @fread($this->socket, $read_to - $current_pos);
./library/Zend/Http/Client/Adapter/Socket.php:383: $chunk .= @fgets($this->socket);
./library/Zend/Http/Client/Adapter/Socket.php:420: if(@stream_copy_to_stream($this->socket, $this->out_stream, $read_to - $current_pos) == 0) {
./library/Zend/Http/Client/Adapter/Socket.php:425: $chunk = @fread($this->socket, $read_to - $current_pos);
./library/Zend/Http/Client/Adapter/Socket.php:443: if(@stream_copy_to_stream($this->socket, $this->out_stream) == 0) {
./library/Zend/Http/Client/Adapter/Socket.php:448: $buff = @fread($this->socket, 8192);
./library/Zend/Http/Client/Adapter/Socket.php:476: if (is_resource($this->socket)) @fclose($this->socket);
./library/Zend/Http/Response/Stream.php:209: @unlink($this->stream_name);
./library/Zend/Mime/Decode.php:143: @list($headers, $body) = @preg_split("%([\r\n]+)\\1%U", $message, 2);
./library/Zend/InfoCard/XML/Security.php:209: if(@openssl_verify($canonical_signedinfo, $signatureValue, $public_key)) {
./library/Zend/File/Transfer/Adapter/AbstractAdapter.php:1217: $result = sprintf("%u", @filesize($value['name']));
./library/Zend/File/Transfer/Adapter/AbstractAdapter.php:1219: $result = sprintf("%u", @filesize($value['tmp_name']));
./library/Zend/File/Transfer/Adapter/AbstractAdapter.php:1275: $mime = @finfo_open($const, $value['options']['magicFile']);
./library/Zend/File/Transfer/Adapter/AbstractAdapter.php:1279: $mime = @finfo_open($const);
./library/Zend/File/Transfer/Adapter/AbstractAdapter.php:1412: $result = @file_put_contents($tempFile, 'TEST');
./library/Zend/File/Transfer/Adapter/AbstractAdapter.php:1418: $result = @unlink($tempFile);
./library/Zend/Translator/Adapter/Gettext.php:76: $this->_file = @fopen($filename, 'rb');
./library/Zend/Translator/Adapter/Gettext.php:80: if (@filesize($filename) < 10) {
./library/Zend/Translator/Adapter/Gettext.php:81: @fclose($this->_file);
./library/Zend/Translator/Adapter/Gettext.php:92: @fclose($this->_file);
./library/Zend/Translator/Adapter/Gettext.php:119: $original = @fread($this->_file, $origtemp[$count * 2 + 1]);
./library/Zend/Translator/Adapter/Gettext.php:141: @fclose($this->_file);
./library/Zend/Translator/Adapter/Csv.php:87: $this->_file = @fopen($filename, 'rb');
./library/Zend/Server/Cache.php:76: if (0 === @file_put_contents($filename, serialize($methods))) {
./library/Zend/Server/Cache.php:124: if (false === ($dispatch = @file_get_contents($filename))) {
./library/Zend/Server/Cache.php:128: if (false === ($dispatchArray = @unserialize($dispatch))) {
./library/Zend/Validator/Hostname.php:565: $status = @preg_match($regexChar, $domainPart);
./library/Zend/Validator/Hostname.php:620: $status = @preg_match($regexLocal, $value);
./library/Zend/Validator/File/Size.php:267: $size = sprintf("%u", @filesize($value));
./library/Zend/Validator/File/ExcludeMimeType.php:73: $this->_finfo = @finfo_open($const, $mimefile);
./library/Zend/Validator/File/ExcludeMimeType.php:77: $this->_finfo = @finfo_open($const);
./library/Zend/Validator/File/ImageSize.php:407: $size = @getimagesize($value);
./library/Zend/Validator/File/FilesSize.php:130: $size += @filesize($files);
./library/Zend/Validator/File/MimeType.php:156: } elseif (!(@ini_get("safe_mode") == 'On' || @ini_get("safe_mode") === 1)) {
./library/Zend/Validator/File/MimeType.php:201: $this->_finfo = @finfo_open($const, $file);
./library/Zend/Validator/File/MimeType.php:357: $this->_finfo = @finfo_open($const, $mimefile);
./library/Zend/Validator/File/MimeType.php:361: $this->_finfo = @finfo_open($const);
./library/Zend/Validator/Regex.php:107: $status = @preg_match($this->_pattern, "Test");
./library/Zend/Validator/Regex.php:131: $status = @preg_match($this->_pattern, $value);
./library/Zend/Validator/Sitemap/Lastmod.php:80: $result = @preg_match(self::LASTMOD_REGEX, $value);
./library/Zend/GData/HttpAdapterStreamingProxy.php:109: if (! @fwrite($this->socket, $request)) {
./library/Zend/GData/HttpAdapterStreamingProxy.php:116: if (! @fwrite($this->socket, $body->read(self::CHUNK_SIZE))) {
./library/Zend/GData/App/Base.php:304: @ini_set('track_errors', 1);
./library/Zend/GData/App/Base.php:307: @ini_restore('track_errors');
./library/Zend/GData/YouTube.php:620: @ini_set('track_errors', 1);
./library/Zend/GData/YouTube.php:623: @ini_restore('track_errors');
./library/Zend/GData/GApps/ServiceException.php:156: @ini_set('track_errors', 1);
./library/Zend/GData/GApps/ServiceException.php:159: @ini_restore('track_errors');
./library/Zend/GData/HttpClient.php:102: $fp = @fopen($file, "r", $useIncludePath);
./library/Zend/GData/App.php:806: @ini_set('track_errors', 1);
./library/Zend/GData/App.php:809: @ini_restore('track_errors');
./library/Zend/GData/App.php:837: @ini_set('track_errors', 1);
./library/Zend/GData/App.php:838: $feed = @file_get_contents($filename, $useIncludePath);
./library/Zend/GData/App.php:839: @ini_restore('track_errors');
./library/Zend/GData/HttpAdapterStreamingSocket.php:90: if (! @fwrite($this->socket, $request)) {
./library/Zend/GData/HttpAdapterStreamingSocket.php:99: if (! @fwrite($this->socket, $chunk)) {
./library/Zend/Cloud/StorageService/Adapter/WindowsAzure.php:227: @unlink($temporaryFilePath);
./library/Zend/Cloud/StorageService/Adapter/WindowsAzure.php:231: @unlink($temporaryFilePath);
./library/Zend/Date/DateObject.php:155: $oldzone = @date_default_timezone_get();
./library/Zend/Date/DateObject.php:161: $result = ($gmt) ? @gmmktime($hour, $minute, $second, $month, $day, $year)
./library/Zend/Date/DateObject.php:162: : @mktime($hour, $minute, $second, $month, $day, $year);
./library/Zend/Date/DateObject.php:307: $oldzone = @date_default_timezone_get();
./library/Zend/Date/DateObject.php:313: $result = ($gmt) ? @gmdate($format) : @date($format);
./library/Zend/Date/DateObject.php:319: $result = ($gmt) ? @gmdate($format, $timestamp) : @date($format, $timestamp);
./library/Zend/Date/DateObject.php:681: return @getdate((int) $timestamp);
./library/Zend/Date/DateObject.php:1014: $oldzone = @date_default_timezone_get();
./library/Zend/Date/DateObject.php:1020: if (!@timezone_open($zone)) {
./library/Zend/Date/DateObject.php:1024: $result = @date_default_timezone_set($zone);
./library/Zend/Date/DateObject.php:1061: $zone = @date_default_timezone_get();
./library/Zend/Date/DateObject.php:1062: $result = @date_default_timezone_set($this->_timezone);
./library/Zend/Date/Date.php:190: $zone = @date_default_timezone_get();
./library/Zend/Authentication/Adapter/Http/FileResolver.php:124: $fp = @fopen($this->_file, 'r');
./library/Zend/Authentication/Adapter/Digest.php:191: if (false === ($fileHandle = @fopen($this->_filename, 'r'))) {
./library/Zend/Filter/PregReplace.php:79: self::$_unicodeSupportEnabled = (@preg_match('/\pL/u', 'a')) ? true : false;
./library/Zend/Filter/RealPath.php:99: $realpath = @realpath($path);
./library/Zend/Filter/Alpha.php:86: self::$unicodeEnabled = (@preg_match('/\pL/u', 'a')) ? true : false;
./library/Zend/Filter/Digits.php:52: self::$_unicodeEnabled = (@preg_match('/\pL/u', 'a')) ? true : false;
./library/Zend/Filter/Alnum.php:86: self::$unicodeEnabled = (@preg_match('/\pL/u', 'a')) ? true : false;
./library/Zend/View/Helper/Navigation/Links.php:150: if (@preg_match('/find(Rel|Rev)(.+)/', $method, $match)) {
./library/Zend/View/Helper/Translator.php:105: if (is_array($options[0]) || @vsprintf($messageid, array_slice($options, 0, -1)) !== false) {
./library/Zend/ProgressBar/Adapter/Console.php:188: $stream = @fopen($resource, 'w');
./library/Zend/ProgressBar/Adapter/Console.php:239: if (preg_match('#\d+ (\d+)#', @shell_exec('stty size'), $match) === 1) {
./library/Zend/ProgressBar/Adapter/Console.php:241: } else if (preg_match('#columns = (\d+);#', @shell_exec('stty'), $match) === 1) {
./library/Zend/Feed/Reader/Reader.php:325: @ini_set('track_errors', 1);
./library/Zend/Feed/Reader/Reader.php:326: $feed = @file_get_contents($filename);
./library/Zend/Feed/Reader/Reader.php:327: @ini_restore('track_errors');
./library/Zend/Feed/Reader/Reader.php:376: @ini_set('track_errors', 1);
./library/Zend/Feed/Reader/Reader.php:379: @ini_restore('track_errors');
./library/Zend/Text/Figlet/Figlet.php:453: $textLength = @iconv_strlen($text, 'UTF-8');
./library/Zend/Search/Lucene/Index/SegmentInfo.php:784: if (($unserializedData = @unserialize($stiFileData)) !== false) {
./library/Zend/Search/Lucene/Storage/File/Filesystem.php:68: $this->_fileHandle = @fopen($filename, $mode);
./library/Zend/Search/Lucene/Storage/File/Filesystem.php:130: @fclose($this->_fileHandle);
./library/Zend/Search/Lucene/Storage/Directory/Filesystem.php:195: @chmod($this->_dirPath . '/' . $filename, self::$_defaultFilePermissions);
./library/Zend/Search/Lucene/Storage/Directory/Filesystem.php:217: if (!@unlink($this->_dirPath . '/' . $filename)) {
./library/Zend/Search/Lucene/Storage/Directory/Filesystem.php:314: $success = @rename($this->_dirPath . '/' . $from, $this->_dirPath . '/' . $to);
./library/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8.php:63: if (@preg_match('/\pL/u', 'a') != 1) {
./library/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8Num.php:63: if (@preg_match('/\pL/u', 'a') != 1) {
./library/Zend/Search/Lucene/Search/Query/Preprocessing/Fuzzy.php:185: if (@preg_match('/\pL/u', 'a') == 1) {
./library/Zend/Search/Lucene/Search/Query/Preprocessing/Fuzzy.php:235: if (@preg_match('/\pL/u', 'a') == 1) {
./library/Zend/Search/Lucene/Search/Query/Preprocessing/Term.php:159: if (@preg_match('/\pL/u', 'a') == 1) {
./library/Zend/Search/Lucene/Search/Query/Preprocessing/Term.php:254: if (@preg_match('/\pL/u', 'a') == 1) {
./library/Zend/Search/Lucene/Search/Query/Wildcard.php:165: if (@preg_match('/\pL/u', 'a') == 1) {
./library/Zend/Search/Lucene/Search/Query/Wildcard.php:330: if (@preg_match('/\pL/u', 'a') == 1) {
./library/Zend/Queue/Stomp/Connection.php:202: while (($line = @fgets($this->_socket)) !== false) {
./library/Zend/Queue/Stomp/Connection.php:215: $chunk = @fgets($this->_socket);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment