laravel 中添加自定义辅助函数helpers.php

  1. 创建 app/Http/helpers.php文件
  2. 修改 compose.json文件

    "autoload":
    {
        "classmap": [
            "database"
        ],
        "psr-4":
        {
            "app\\": "app/",
            "App\\": "app/"
        },
        "files": [
            "app/yunshop.php",
            "app/helpers.php"
        ]
    },

     

  3. 执行命令 composer dump-autoload

  4. app/Http/helpers.php中定义方法

/*
 * 生成一个随机订单号:如果需要唯一性,请自己验证重复调用
 *
 * @params string $prefix 标示 SN RV
 * @params bool $numeric 是否为纯数字
 *
 * @return mixed
 * @Author yitian */
if (!function_exists('createNo')) {
    function createNo($prefix, $length = 6, $numeric = FALSE)
    {
        return $prefix . date('YmdHis') . \app\common\helpers\Client::random($length, $numeric);
    }
}

在程序中直接使用了

你可能感兴趣的:(laravel)