PHP code example of jgraffite / snake2camel

1. Go to this page and download the library: Download jgraffite/snake2camel library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

jgraffite / snake2camel example snippets

 php
/*
 * Package Service Providers...
 */
 [...]
 Jgraffite\Snake2camel\Snake2camelServiceProvider::class,
 php

namespace App;

use Illuminate\Auth\Authenticatable;
use Illuminate\Database\Eloquent\Model;

class SomeModel extends Model
{
...
}
 php

namespace App;

use Illuminate\Auth\Authenticatable;

class SomeModel extends \Model
{
...
}
 php


$modelObject = new SomeModel;
$modelObject->someColumn = "any value";
$modelObject->save();

----

$item = SomeModel::find(1, ['someColumn']); #Get a model and retrieve only one specific column
echo $item->someColumn . PHP_EOL;
echo $item->some_column; #This will print the same of the above code
 php

$item = Somemodel::whereFullTextMatch(['column1','column2'], 'query words')->get();