美文网首页
PHP开发小记(Laravel)

PHP开发小记(Laravel)

作者: 坚果牛奶 | 来源:发表于2016-12-01 16:11 被阅读18次

    <strong>清除服务器soap缓存</strong>

    php artisan tinker
    ini_set("soap.wsdl_cache_enabled", 0);
    

    <strong>获取单一数据</strong>
    获取第一行数据
    DB::table('table_name')->first();

    获取单一字段值
    DB::table('table_name')->pluck('column_name');

    获取单一列列表
    DB::table('table_name')->lists('column_name');

    相关文章

      网友评论

          本文标题:PHP开发小记(Laravel)

          本文链接:https://www.haomeiwen.com/subject/cngxmttx.html