This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// 26-March-2001 | |
// 15-August-2001 | |
// Wednesday | |
// 1-January-2000 | |
// 22-February-2000 | |
// Monday |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*********************************************************** | |
******* SIMPLE TEST **/ | |
class A { | |
function t() { | |
echo get_calling_class(); | |
} | |
} | |
class B { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Important Note: PHP Version must be < version 5.5 if you are using version 7.0 | |
you will need to use a VM like bee-box so you can have an isolated installation of PHP5.4 installed | |
Download and install bee-box: https://sourceforge.net/projects/bwapp/files/bee-box/ | |
Download bWAPP: http://www.itsecgames.com/ | |
Unzip the downloaded zipped folder | |
SETUP DATABASE: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$arrays = array( | |
array( | |
'name'=>'foo', | |
), | |
array( | |
'name'=>'bar', | |
), | |
array( | |
'name'=>'foo', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace Larabook\Statuses; | |
use Larabook\Users\User; | |
class StatusRepository { | |
/** | |
* Get all statuses associated with a user. | |
* | |
* @param User $user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App; | |
use Illuminate\Auth\Authenticatable; | |
use Laravel\Lumen\Auth\Authorizable; | |
use Illuminate\Database\Eloquent\Model; | |
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract; | |
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract; | |
class User extends Model implements AuthenticatableContract, AuthorizableContract | |
{ | |
use Authenticatable, Authorizable; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Illuminate\Support\Facades\Schema; | |
use Illuminate\Database\Schema\Blueprint; | |
use Illuminate\Database\Migrations\Migration; | |
class CreateUsersTable extends Migration | |
{ | |
/** | |
* Run the migrations. | |
* | |
* @return void |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
|-------------------------------------------------------------------------- | |
| Application Routes | |
|-------------------------------------------------------------------------- | |
| | |
| Here is where you can register all of the routes for an application. | |
| It is a breeze. Simply tell Lumen the URIs it should respond to | |
| and give it the Closure to call when that URI is requested. | |
| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use App\User; | |
use Illuminate\Http\Request; | |
use Illuminate\Hashing\BcryptHasher; | |
/** | |
* Class UserController |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$letters = []; | |
$word = "racecar"; | |
$rword = ""; | |
for($i=0; $i<strlen($word); $i++) { | |
array_push($letters, $word[$i]); | |
} | |
for($i=0; $i<strlen($word); $i++) { | |
$rword = $rword . array_pop($letters); |