PHP邮件回复解析器库

2018-01-04 16:49:48197663查看评论(0)
简介:

<?php
/**
 * Simple autoloader that follow the PHP Standards Recommendation #0 (PSR-0)
 * @see https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md for more informations.
 *
 * Code inspired from the SplClassLoader RFC
 * @see https://wiki.php.net/rfc/splclassloader#example_implementation
 */
spl_autoload_register(function ($className) {
    $className = ltrim($className, '\\');
    $fileName = '';
    if ($lastNsPos = strripos($className, '\\')) {
        $namespace = substr($className, 0, $lastNsPos);
        $className = substr($className, $lastNsPos + 1);
        $fileName = str_replace('\\', DIRECTORY_SEPARATOR, $namespace) . DIRECTORY_SEPARATOR;
    }
    $fileName = __DIR__ . DIRECTORY_SEPARATOR . $fileName . $className . '.php';
    if (file_exists($fileName)) {
        require $fileName;
        return true;
    }
    return false;
});

这是一份PHP邮件回复解析器库,需要的朋友可以下载使用。

PHP邮件回复解析器库

申明:本站所有资源都是转载各大下载站,或由网友投稿发布,请自行检测软件的完整性,如有侵权请联系我们删除下架,联系方式:admin@php.cn

相关推荐

PHP邮件回复解析器库

PHP邮件回复解析器库
171163

邮件回复解析器的PHP库

一个邮件回复解析器库
122163

Requests-masterHTTP的PHP库

Requests-masterHTTP的PHP库
76935

php生成excel文件到指定目录的函数类

php生成excel文件到指定目录的函数类
5287210

数组排序类库

数组排序类库
1078176

validation-Laravel的验证库

validation-Laravel的验证库
134577

用于开发PECL扩展的PHP库

用于开发PECL扩展的PHP库
80654

利用phpexcel对数据库数据的导入excel(excel筛选)、导出excel的类

利用phpexcel对数据库数据的导入excel(excel筛选)、导出excel的类
2412435
网页评论
最新评论