First, Lets find out what version of PHP we're running (To find out if it's the default version).
To do that, Within the terminal, Fire this command:
which php
| <?php | |
| /* | |
| * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
| * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
| * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
| * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
| * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
| * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
| * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| <?php | |
| trait MetaClass | |
| { | |
| protected $__classMethods = array(); | |
| static protected $__staticMethods = array(); | |
| public function __call($name, $args) | |
| { |
| <?php | |
| /** | |
| * Dot notation for access multidimensional arrays. | |
| * | |
| * $dn = new DotNotation(['bar'=>['baz'=>['foo'=>true]]]); | |
| * | |
| * $value = $dn->get('bar.baz.foo'); // $value == true | |
| * | |
| * $dn->set('bar.baz.foo', false); // ['foo'=>false] | |
| * |
| <?php | |
| trait Getters | |
| { | |
| /** | |
| * calls Class::$name() | |
| * | |
| * @param string $name the name of a requested property | |
| * @return mixed the result | |
| */ |
| '========================================================================== | |
| ' JSON Encoder for VBScript | |
| ' Copyright (c) 2013 Atif Aziz. All rights reserved. | |
| ' | |
| ' Licensed under the Apache License, Version 2.0 (the "License"); | |
| ' you may not use this file except in compliance with the License. | |
| ' You may obtain a copy of the License at | |
| ' | |
| ' http://www.apache.org/licenses/LICENSE-2.0 | |
| ' |
| <?php | |
| /** | |
| * Trait OptionTrait | |
| * | |
| * A trait that will apply option configuration functionality to a class. | |
| * Typical use would be to define a constructor which takes in an array | |
| * of options and sets them with defaults like so: | |
| * |
| <?php | |
| /** | |
| * Batch Mockup | |
| * | |
| * I placed this in my BaseController.php file | |
| * | |
| * @usage | |
| * $batch = new Batch('stats'); | |
| * $batch->columns = ['score', 'name']; | |
| * $batch->data = [ |
uninstall JetBrains settings:curl -sL https://gist.github.com/denji/9731967/raw/jetbrains-uninstall.sh | bash -s
backup JetBrains settings:curl -sL https://gist.github.com/denji/9731967/raw/jetbrains-backup.sh | bash -s