有没有一种简单的方法可以让 php camelcase 成为我的字符串?我正在使用 Laravel 框架,我想在搜索功能中使用一些速记.
Is there a simple way I can have php camelcase a string for me? I am using the Laravel framework and I want to use some shorthand in a search feature.
它看起来像下面这样...
It would look something like the following...
private function search(Array $for, Model $in){
$results = [];
foreach($for as $column => $value){
$results[] = $in->{$this->camelCase($column)}($value)->get();
}
return $results;
}
喜欢
$this->search(['where-created_at' => '2015-25-12'], new Ticket);
所以我将使用的搜索函数中的结果调用是
So the resulting call in the search function I would be using is
$in->whereCreateAt('2015-25-12')->get();
唯一我想不通的是骆驼壳...
The only thing is I can't figure out is the camel casing...
你有没有考虑过使用 Laravel 内置的驼峰式大小写功能?
Have you considered using Laravel's built-in camel case functtion?
$camel = camel_case('foo_bar');
可以在此处找到完整的详细信息:
Full details can be found here:
https://laravel.com/docs/4.2/helpers#strings
这篇关于我如何在 php 中将字符串驼峰化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
MySQLi准备好的语句&foreach 循环MySQLi prepared statement amp; foreach loop(MySQLi准备好的语句amp;foreach 循环)
mysqli_insert_id() 是从整个服务器还是从同一用户获Is mysqli_insert_id() gets record from whole server or from same user?(mysqli_insert_id() 是从整个服务器还是从同一用户获取记录?)
PHP MySQLi 无法识别登录信息PHP MySQLi doesn#39;t recognize login info(PHP MySQLi 无法识别登录信息)
mysqli_select_db() 需要 2 个参数mysqli_select_db() expects exactly 2 parameters(mysqli_select_db() 需要 2 个参数)
Php mysql pdo 查询:用查询结果填充变量Php mysql pdo query: fill up variable with query result(Php mysql pdo 查询:用查询结果填充变量)
MySQLI 28000/1045 用户“root"@“localhost"的访问MySQLI 28000/1045 Access denied for user #39;root#39;@#39;localhost#39;(MySQLI 28000/1045 用户“root@“localhost的访问被拒绝)