Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

regex - How can I camelcase a string in php

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;
}

Called like

$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...

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.6k users

...