2012-08-16 23:41:25 -04:00
|
|
|
snippet <?
|
|
|
|
<?php
|
|
|
|
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2016-07-16 14:30:35 -04:00
|
|
|
snippet dst "declare(strict_types=1)"
|
|
|
|
declare(strict_types=${1:1});
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet ec
|
2013-11-16 14:45:48 -05:00
|
|
|
echo ${0};
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet <?e
|
2013-11-16 14:45:48 -05:00
|
|
|
<?php echo ${0} ?>
|
2012-08-16 23:41:25 -04:00
|
|
|
# this one is for php5.4
|
|
|
|
snippet <?=
|
2013-11-16 14:45:48 -05:00
|
|
|
<?=${0}?>
|
2013-04-26 12:17:22 -04:00
|
|
|
snippet ?=
|
2013-11-16 14:45:48 -05:00
|
|
|
<?= ${0} ?>
|
2013-04-26 12:17:22 -04:00
|
|
|
snippet ?
|
2013-11-16 14:45:48 -05:00
|
|
|
<?php ${0} ?>
|
2013-04-26 12:17:22 -04:00
|
|
|
snippet ?f
|
|
|
|
<?php foreach ($${1:vars} as $${2:$var}): ?>
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2013-04-26 12:17:22 -04:00
|
|
|
<?php endforeach ?>
|
|
|
|
snippet ?i
|
|
|
|
<?php if ($${1:var}): ?>
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2013-04-26 12:17:22 -04:00
|
|
|
<?php endif ?>
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet ns
|
|
|
|
namespace ${1:Foo\Bar\Baz};
|
2017-02-11 08:01:38 -05:00
|
|
|
|
|
|
|
${0:${VISUAL}}
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet c
|
2013-07-17 19:06:05 -04:00
|
|
|
class ${1:`vim_snippets#Filename()`}
|
2012-08-16 23:41:25 -04:00
|
|
|
{
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
|
|
|
snippet i
|
2013-07-17 19:06:05 -04:00
|
|
|
interface ${1:`vim_snippets#Filename()`}
|
2012-08-16 23:41:25 -04:00
|
|
|
{
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
|
|
|
snippet t.
|
2013-11-16 14:45:48 -05:00
|
|
|
$this->
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet f
|
2014-07-02 07:18:18 -04:00
|
|
|
function ${1}(${3})
|
2012-08-16 23:41:25 -04:00
|
|
|
{
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
|
|
|
# method
|
|
|
|
snippet m
|
2013-04-26 12:17:22 -04:00
|
|
|
${1:protected} function ${2:foo}()
|
2012-08-16 23:41:25 -04:00
|
|
|
{
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
2016-06-26 07:12:36 -04:00
|
|
|
snippet sm "PHP Class Setter"
|
2013-04-13 13:45:21 -04:00
|
|
|
/**
|
|
|
|
* Sets the value of ${1:foo}
|
|
|
|
*
|
2016-06-26 07:12:36 -04:00
|
|
|
* @param ${2:string} $$1 ${3:description}
|
2013-04-13 13:45:21 -04:00
|
|
|
*
|
2013-07-17 19:06:05 -04:00
|
|
|
* @return ${4:`vim_snippets#Filename()`}
|
2013-04-13 13:45:21 -04:00
|
|
|
*/
|
2016-06-26 07:12:36 -04:00
|
|
|
${5:public} function set${6:$1}(${7:$2 }$$1)
|
2012-08-16 23:41:25 -04:00
|
|
|
{
|
2013-04-13 13:45:21 -04:00
|
|
|
$this->${8:$1} = $$1;
|
2016-06-26 07:12:36 -04:00
|
|
|
|
2012-08-16 23:41:25 -04:00
|
|
|
return $this;
|
2013-11-16 14:45:48 -05:00
|
|
|
}
|
2016-06-26 07:12:36 -04:00
|
|
|
snippet gm "PHP Class Getter Setter"
|
2013-04-13 13:45:21 -04:00
|
|
|
/**
|
|
|
|
* Gets the value of ${1:foo}
|
|
|
|
*
|
2016-06-26 07:12:36 -04:00
|
|
|
* @return ${2:string}
|
2013-04-13 13:45:21 -04:00
|
|
|
*/
|
2016-06-26 07:12:36 -04:00
|
|
|
${3:public} function get${4:$1}()
|
2012-08-16 23:41:25 -04:00
|
|
|
{
|
2013-04-13 13:45:21 -04:00
|
|
|
return $this->${5:$1};
|
2013-11-16 14:45:48 -05:00
|
|
|
}
|
2012-08-16 23:41:25 -04:00
|
|
|
#setter
|
|
|
|
snippet $s
|
2013-11-16 14:45:48 -05:00
|
|
|
${1:$foo}->set${2:Bar}(${0});
|
2012-08-16 23:41:25 -04:00
|
|
|
#getter
|
|
|
|
snippet $g
|
2013-11-16 14:45:48 -05:00
|
|
|
${1:$foo}->get${0:Bar}();
|
2012-08-16 23:41:25 -04:00
|
|
|
# Tertiary conditional
|
|
|
|
snippet =?:
|
2013-11-16 14:45:48 -05:00
|
|
|
$${1:foo} = ${2:true} ? ${3:a} : ${0};
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet ?:
|
2013-11-16 14:45:48 -05:00
|
|
|
${1:true} ? ${2:a} : ${0}
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet t "$retVal = (condition) ? a : b"
|
|
|
|
$${1:retVal} = (${2:condition}) ? ${3:a} : ${4:b};
|
|
|
|
# Predefined variables
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet C
|
2013-11-16 14:45:48 -05:00
|
|
|
$_COOKIE['${1:variable}']
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet E
|
2013-11-16 14:45:48 -05:00
|
|
|
$_ENV['${1:variable}']
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet F
|
2013-11-16 14:45:48 -05:00
|
|
|
$_FILES['${1:variable}']
|
2017-03-07 12:04:28 -05:00
|
|
|
snippet G "_GET array"
|
2013-11-16 14:45:48 -05:00
|
|
|
$_GET['${1:variable}']
|
2017-03-07 12:04:28 -05:00
|
|
|
snippet P "_POST array"
|
2013-11-16 14:45:48 -05:00
|
|
|
$_POST['${1:variable}']
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet R
|
2013-11-16 14:45:48 -05:00
|
|
|
$_REQUEST['${1:variable}']
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet S
|
2013-11-16 14:45:48 -05:00
|
|
|
$_SERVER['${1:variable}']
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet SS
|
2013-11-16 14:45:48 -05:00
|
|
|
$_SESSION['${1:variable}']
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet get "get"
|
|
|
|
$_GET['${1}']
|
|
|
|
snippet post "post"
|
|
|
|
$_POST['${1}']
|
|
|
|
snippet session "session"
|
|
|
|
$_SESSION['${1}']
|
2012-08-16 23:41:25 -04:00
|
|
|
# the following are old ones
|
|
|
|
snippet inc
|
2013-11-16 14:45:48 -05:00
|
|
|
include '${1:file}';
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet inc1
|
2013-11-16 14:45:48 -05:00
|
|
|
include_once '${1:file}';
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet req
|
2013-11-16 14:45:48 -05:00
|
|
|
require '${1:file}';
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet req1
|
2013-11-16 14:45:48 -05:00
|
|
|
require_once '${1:file}';
|
2012-08-16 23:41:25 -04:00
|
|
|
# Start Docblock
|
|
|
|
snippet /*
|
|
|
|
/**
|
2013-11-16 14:45:48 -05:00
|
|
|
* ${0}
|
2012-08-16 23:41:25 -04:00
|
|
|
*/
|
|
|
|
# Class - post doc
|
|
|
|
snippet doc_cp
|
|
|
|
/**
|
|
|
|
* ${1:undocumented class}
|
|
|
|
*
|
|
|
|
* @package ${2:default}
|
|
|
|
* @subpackage ${3:default}
|
|
|
|
* @author ${4:`g:snips_author`}
|
2013-11-16 14:45:48 -05:00
|
|
|
*/
|
2012-08-16 23:41:25 -04:00
|
|
|
# Class Variable - post doc
|
|
|
|
snippet doc_vp
|
|
|
|
/**
|
|
|
|
* ${1:undocumented class variable}
|
|
|
|
*
|
|
|
|
* @var ${2:string}
|
2013-11-16 14:45:48 -05:00
|
|
|
*/
|
2012-08-16 23:41:25 -04:00
|
|
|
# Class Variable
|
|
|
|
snippet doc_v
|
|
|
|
/**
|
|
|
|
* ${3:undocumented class variable}
|
|
|
|
*
|
|
|
|
* @var ${4:string}
|
|
|
|
*/
|
2013-11-16 14:45:48 -05:00
|
|
|
${1:var} $${2};
|
2019-03-08 06:04:56 -05:00
|
|
|
|
|
|
|
# Class attribute with short comment
|
|
|
|
snippet att
|
|
|
|
/** @var ${3:string} */
|
|
|
|
${1:public} $${2};
|
|
|
|
|
2012-08-16 23:41:25 -04:00
|
|
|
# Class
|
|
|
|
snippet doc_c
|
|
|
|
/**
|
|
|
|
* ${3:undocumented class}
|
|
|
|
*
|
|
|
|
* @package ${4:default}
|
|
|
|
* @subpackage ${5:default}
|
|
|
|
* @author ${6:`g:snips_author`}
|
|
|
|
*/
|
|
|
|
${1:}class ${2:}
|
|
|
|
{
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
} // END $1class $2
|
|
|
|
# Constant Definition - post doc
|
|
|
|
snippet doc_dp
|
|
|
|
/**
|
|
|
|
* ${1:undocumented constant}
|
2013-11-16 14:45:48 -05:00
|
|
|
*/
|
2012-08-16 23:41:25 -04:00
|
|
|
# Constant Definition
|
|
|
|
snippet doc_d
|
|
|
|
/**
|
|
|
|
* ${3:undocumented constant}
|
|
|
|
*/
|
2013-11-16 14:45:48 -05:00
|
|
|
define(${1}, ${2});
|
2012-08-16 23:41:25 -04:00
|
|
|
# Function - post doc
|
|
|
|
snippet doc_fp
|
|
|
|
/**
|
|
|
|
* ${1:undocumented function}
|
|
|
|
*
|
|
|
|
* @return ${2:void}
|
|
|
|
* @author ${3:`g:snips_author`}
|
2013-11-16 14:45:48 -05:00
|
|
|
*/
|
2012-08-16 23:41:25 -04:00
|
|
|
# Function signature
|
|
|
|
snippet doc_s
|
|
|
|
/**
|
|
|
|
* ${4:undocumented function}
|
|
|
|
*
|
|
|
|
* @return ${5:void}
|
|
|
|
* @author ${6:`g:snips_author`}
|
|
|
|
*/
|
2013-11-16 14:45:48 -05:00
|
|
|
${1}function ${2}(${3});
|
2012-08-16 23:41:25 -04:00
|
|
|
# Function
|
|
|
|
snippet doc_f
|
|
|
|
/**
|
|
|
|
* ${4:undocumented function}
|
|
|
|
*
|
|
|
|
* @return ${5:void}
|
|
|
|
* @author ${6:`g:snips_author`}
|
|
|
|
*/
|
|
|
|
${1}function ${2}(${3})
|
2013-11-16 14:45:48 -05:00
|
|
|
{${0}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
|
|
|
# Header
|
|
|
|
snippet doc_h
|
|
|
|
/**
|
|
|
|
* ${1}
|
|
|
|
*
|
|
|
|
* @author ${2:`g:snips_author`}
|
|
|
|
* @version ${3:$Id$}
|
|
|
|
* @copyright ${4:$2}, `strftime('%d %B, %Y')`
|
2013-11-16 14:45:48 -05:00
|
|
|
* @package ${0:default}
|
2012-08-16 23:41:25 -04:00
|
|
|
*/
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet doc_i "interface someClass {}"
|
|
|
|
/**
|
|
|
|
* $1
|
|
|
|
* @package ${2:default}
|
|
|
|
* @author ${3:`!v g:snips_author`}
|
|
|
|
**/
|
|
|
|
interface ${1:someClass}
|
|
|
|
{${4}
|
|
|
|
}
|
|
|
|
snippet inheritdoc "@inheritdoc docblock"
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2012-08-16 23:41:25 -04:00
|
|
|
# Interface
|
|
|
|
snippet interface
|
|
|
|
/**
|
|
|
|
* ${2:undocumented class}
|
|
|
|
*
|
|
|
|
* @package ${3:default}
|
|
|
|
* @author ${4:`g:snips_author`}
|
|
|
|
*/
|
2013-07-17 19:06:05 -04:00
|
|
|
interface ${1:`vim_snippets#Filename()`}
|
2012-08-16 23:41:25 -04:00
|
|
|
{
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
2016-05-14 07:57:54 -04:00
|
|
|
# Trait
|
|
|
|
snippet trait
|
|
|
|
/**
|
|
|
|
* ${2:undocumented class}
|
|
|
|
*
|
|
|
|
* @package ${3:default}
|
|
|
|
* @author ${4:`g:snips_author`}
|
|
|
|
*/
|
|
|
|
trait ${1:`vim_snippets#Filename()`}
|
|
|
|
{
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2016-05-14 07:57:54 -04:00
|
|
|
}
|
2012-08-16 23:41:25 -04:00
|
|
|
# class ...
|
|
|
|
snippet class
|
|
|
|
/**
|
|
|
|
* ${1}
|
|
|
|
*/
|
2013-07-17 19:06:05 -04:00
|
|
|
class ${2:`vim_snippets#Filename()`}
|
2012-08-16 23:41:25 -04:00
|
|
|
{
|
|
|
|
${3}
|
|
|
|
/**
|
|
|
|
* ${4}
|
|
|
|
*/
|
|
|
|
${5:public} function ${6:__construct}(${7:argument})
|
|
|
|
{
|
2013-11-16 14:45:48 -05:00
|
|
|
${0}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
|
|
|
}
|
2013-04-13 13:45:21 -04:00
|
|
|
snippet nc
|
|
|
|
namespace ${1:`substitute(substitute(expand("%:h"), '\v^\w+\/(\u)', '\1', ''), '\/', '\\\', 'g')`};
|
|
|
|
|
2013-07-17 19:06:05 -04:00
|
|
|
${2:abstract }class ${3:`vim_snippets#Filename()`}
|
2013-04-13 13:45:21 -04:00
|
|
|
{
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2013-04-13 13:45:21 -04:00
|
|
|
}
|
2012-08-16 23:41:25 -04:00
|
|
|
# define(...)
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet def "define('VARIABLE_NAME', 'definition')"
|
|
|
|
define('${1:VARIABLE_NAME}', ${2:'definition'});
|
2012-08-16 23:41:25 -04:00
|
|
|
# defined(...)
|
|
|
|
snippet def?
|
2013-11-16 14:45:48 -05:00
|
|
|
${1}defined('${2}')
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet wh "while (condition) { ... }"
|
2012-08-16 23:41:25 -04:00
|
|
|
while (${1:/* condition */}) {
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet do "do { ... } while (condition)"
|
2012-08-16 23:41:25 -04:00
|
|
|
do {
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2016-06-11 09:56:50 -04:00
|
|
|
} while (${1});
|
|
|
|
snippet if "if (condition) { ... }"
|
|
|
|
if (${1}) {
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2013-11-16 14:45:48 -05:00
|
|
|
}
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet ifn "if (!condition) { ... }"
|
|
|
|
if (!${1}) {
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet ifil "<?php if (condition): ?> ... <?php endif; ?>"
|
|
|
|
<?php if (${1}): ?>
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
<?php endif; ?>
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet ife "if (cond) { ... } else { ... }"
|
|
|
|
if (${1}) {
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
} else {
|
2017-02-11 08:01:38 -05:00
|
|
|
${2}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet ifeil "<?php if (condition): ?> ... <?php else: ?> ... <?php endif; ?>"
|
|
|
|
<?php if (${1}): ?>
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
<?php else: ?>
|
2017-02-11 08:01:38 -05:00
|
|
|
${2}
|
2012-08-16 23:41:25 -04:00
|
|
|
<?php endif; ?>
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet el "else { ... }"
|
2012-08-16 23:41:25 -04:00
|
|
|
else {
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet eif "elseif(condition) { ... }"
|
2016-05-14 07:57:54 -04:00
|
|
|
elseif (${1}) {
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet switch "switch($var) { case 'xyz': ... default: .... }"
|
2012-08-16 23:41:25 -04:00
|
|
|
switch ($${1:variable}) {
|
|
|
|
case '${2:value}':
|
2013-07-17 19:06:05 -04:00
|
|
|
${3}
|
2012-08-16 23:41:25 -04:00
|
|
|
break;
|
2013-11-16 14:45:48 -05:00
|
|
|
${0}
|
2012-08-16 23:41:25 -04:00
|
|
|
default:
|
2013-07-17 19:06:05 -04:00
|
|
|
${4}
|
2012-08-16 23:41:25 -04:00
|
|
|
break;
|
|
|
|
}
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet case "case 'value': ... break"
|
2012-08-16 23:41:25 -04:00
|
|
|
case '${1:value}':
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2013-11-16 14:45:48 -05:00
|
|
|
break;
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet for "for ($i = 0; $i < $count; $i++) { ... }"
|
2012-08-16 23:41:25 -04:00
|
|
|
for ($${2:i} = 0; $$2 < ${1:count}; $$2${3:++}) {
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet foreach "foreach ($var as $value) { .. }"
|
2012-08-16 23:41:25 -04:00
|
|
|
foreach ($${1:variable} as $${2:value}) {
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet foreachil "<?php foreach ($var as $value): ?> ... <?php endforeach; ?>"
|
2012-08-16 23:41:25 -04:00
|
|
|
<?php foreach ($${1:variable} as $${2:value}): ?>
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
<?php endforeach; ?>
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet foreachk "foreach ($var as $key => $value) { .. }"
|
2012-08-16 23:41:25 -04:00
|
|
|
foreach ($${1:variable} as $${2:key} => $${3:value}) {
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet foreachkil "<?php foreach ($var as $key => $value): ?> ... <?php endforeach; ?>"
|
2012-08-16 23:41:25 -04:00
|
|
|
<?php foreach ($${1:variable} as $${2:key} => $${3:value}): ?>
|
2013-11-16 14:45:48 -05:00
|
|
|
${0:<!-- html... -->}
|
2012-08-16 23:41:25 -04:00
|
|
|
<?php endforeach; ?>
|
2016-11-09 12:22:55 -05:00
|
|
|
snippet array "$... = ['' => ]"
|
|
|
|
$${1:arrayName} = ['${2}' => ${3}];
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet try "try { ... } catch (Exception $e) { ... }"
|
2012-08-16 23:41:25 -04:00
|
|
|
try {
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
} catch (${1:Exception} $e) {
|
|
|
|
}
|
|
|
|
# lambda with closure
|
|
|
|
snippet lambda
|
|
|
|
${1:static }function (${2:args}) use (${3:&$x, $y /*put vars in scope (closure) */}) {
|
2013-11-16 14:45:48 -05:00
|
|
|
${0}
|
2012-08-16 23:41:25 -04:00
|
|
|
};
|
|
|
|
# pre_dump();
|
|
|
|
snippet pd
|
2013-11-16 14:45:48 -05:00
|
|
|
echo '<pre>'; var_dump(${0}); echo '</pre>';
|
2012-08-16 23:41:25 -04:00
|
|
|
# pre_dump(); die();
|
|
|
|
snippet pdd
|
2013-11-16 14:45:48 -05:00
|
|
|
echo '<pre>'; var_dump(${1}); echo '</pre>'; die(${0:});
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet vd
|
2013-11-16 14:45:48 -05:00
|
|
|
var_dump(${0});
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet vdd
|
2013-11-16 14:45:48 -05:00
|
|
|
var_dump(${1}); die(${0:});
|
2014-09-27 11:32:18 -04:00
|
|
|
snippet pr
|
|
|
|
print_r(${0});
|
|
|
|
snippet prs
|
|
|
|
print_r(${0}, 1);
|
2013-07-17 19:06:05 -04:00
|
|
|
snippet vdf
|
2013-11-16 14:45:48 -05:00
|
|
|
error_log(print_r($${1:foo}, true), 3, '${2:/tmp/debug.log}');
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet http_redirect
|
2013-04-26 12:17:22 -04:00
|
|
|
header ("HTTP/1.1 301 Moved Permanently");
|
|
|
|
header ("Location: ".URL);
|
2012-08-16 23:41:25 -04:00
|
|
|
exit();
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet log "error_log(var_export($var, true));"
|
|
|
|
error_log(var_export(${1}, true));
|
|
|
|
snippet var "var_export($var)"
|
|
|
|
var_export(${1});
|
|
|
|
snippet ve "Dumb debug helper in HTML"
|
|
|
|
echo '<pre>' . var_export(${1}, 1) . '</pre>';
|
|
|
|
snippet pc "Dumb debug helper in cli"
|
|
|
|
var_export($1);$0
|
2012-08-16 23:41:25 -04:00
|
|
|
# Getters & Setters
|
2016-06-26 07:12:36 -04:00
|
|
|
snippet gs "PHP Class Getter Setter"
|
2012-08-16 23:41:25 -04:00
|
|
|
/**
|
2013-04-13 13:45:21 -04:00
|
|
|
* Gets the value of ${1:foo}
|
2012-08-16 23:41:25 -04:00
|
|
|
*
|
2016-06-26 07:12:36 -04:00
|
|
|
* @return ${2:string}
|
2012-08-16 23:41:25 -04:00
|
|
|
*/
|
2016-06-26 07:12:36 -04:00
|
|
|
public function get${3:$1}()
|
2012-08-16 23:41:25 -04:00
|
|
|
{
|
2013-04-13 13:45:21 -04:00
|
|
|
return $this->${4:$1};
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the value of $1
|
|
|
|
*
|
2013-04-13 13:45:21 -04:00
|
|
|
* @param $2 $$1 ${5:description}
|
|
|
|
*
|
2013-07-17 19:06:05 -04:00
|
|
|
* @return ${6:`vim_snippets#Filename()`}
|
2012-08-16 23:41:25 -04:00
|
|
|
*/
|
2013-04-13 13:45:21 -04:00
|
|
|
public function set$3(${7:$2 }$$1)
|
|
|
|
{
|
|
|
|
$this->$4 = $$1;
|
|
|
|
return $this;
|
2013-11-16 14:45:48 -05:00
|
|
|
}
|
2013-04-13 13:45:21 -04:00
|
|
|
# anotation, get, and set, useful for doctrine
|
|
|
|
snippet ags
|
|
|
|
/**
|
|
|
|
* ${1:description}
|
2013-04-26 12:17:22 -04:00
|
|
|
*
|
2013-11-16 14:45:48 -05:00
|
|
|
* @${0}
|
2013-04-13 13:45:21 -04:00
|
|
|
*/
|
|
|
|
${2:protected} $${3:foo};
|
|
|
|
|
|
|
|
public function get${4:$3}()
|
|
|
|
{
|
|
|
|
return $this->$3;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function set$4(${5:$4 }$${6:$3})
|
2012-08-16 23:41:25 -04:00
|
|
|
{
|
2013-04-13 13:45:21 -04:00
|
|
|
$this->$3 = $$6;
|
2012-08-16 23:41:25 -04:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
snippet rett
|
|
|
|
return true;
|
|
|
|
snippet retf
|
|
|
|
return false;
|
2013-04-26 12:17:22 -04:00
|
|
|
snippet am
|
|
|
|
$${1:foo} = array_map(function($${2:v}) {
|
2013-11-16 14:45:48 -05:00
|
|
|
${0}
|
2013-04-26 12:17:22 -04:00
|
|
|
return $$2;
|
|
|
|
}, $$1);
|
|
|
|
snippet aw
|
|
|
|
array_walk($${1:foo}, function(&$${2:v}, $${3:k}) {
|
2013-11-16 14:45:48 -05:00
|
|
|
$$2 = ${0};
|
2013-04-26 12:17:22 -04:00
|
|
|
});
|
2013-11-16 14:45:48 -05:00
|
|
|
# static var assign once
|
|
|
|
snippet static_var
|
|
|
|
static $${1} = null;
|
|
|
|
if (is_null($$1)){
|
|
|
|
$$1 = ${2};
|
|
|
|
}
|
|
|
|
snippet CSVWriter
|
|
|
|
<?php
|
|
|
|
|
|
|
|
class CSVWriter {
|
|
|
|
public function __construct($file_or_handle, $sep = "\t", $quot = '"'){
|
|
|
|
$args = func_get_args();
|
|
|
|
$mode = isset($opts['mode']) ? $opts['mode'] : 'w';
|
|
|
|
|
|
|
|
$this->f =
|
|
|
|
is_string($file_or_handle)
|
|
|
|
? fopen($file_or_handle, $mode)
|
|
|
|
: $file_or_handle;
|
|
|
|
|
2016-11-09 12:22:55 -05:00
|
|
|
$this->fputcsv_args = [$this->f, null, $sep, $quot];
|
2013-11-16 14:45:48 -05:00
|
|
|
|
|
|
|
if (!$this->f) throw new Exception('bad file descriptor');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function write($row){
|
|
|
|
$this->fputcsv_args[1] =& $row;
|
|
|
|
call_user_func_array('fputcsv', $this->fputcsv_args);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function close(){
|
|
|
|
if (!is_null($this->f))
|
|
|
|
fclose($this->f);
|
|
|
|
$this->f = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function __destruct(){
|
|
|
|
$this->close();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
snippet CSVIterator
|
|
|
|
|
|
|
|
// http://snipplr.com/view.php?codeview&id=1986 // modified
|
|
|
|
class CSVIterator implements Iterator
|
|
|
|
{
|
|
|
|
private $f;
|
|
|
|
private $curr;
|
|
|
|
private $rowCounter;
|
|
|
|
|
|
|
|
/* opts keys:
|
|
|
|
* row_size
|
|
|
|
* escape
|
|
|
|
* enclosure
|
|
|
|
* delimiter
|
|
|
|
*/
|
2016-11-09 12:22:55 -05:00
|
|
|
public function __construct( $file_or_handle, $opts = [4096, ','] )
|
2013-11-16 14:45:48 -05:00
|
|
|
{
|
|
|
|
$d = function($n) use(&$opts){ return isset($opts[$n]) ? $opts[$n] : false; };
|
|
|
|
|
|
|
|
$this->combine = $d('combine');
|
|
|
|
$this->headers = $d('headers');
|
|
|
|
$this->headerCheckFunction = $d('header_check_function');
|
|
|
|
|
|
|
|
$this->f =
|
|
|
|
is_string($file_or_handle)
|
|
|
|
? fopen( $file_or_handle, 'r' )
|
|
|
|
: $file_or_handle;
|
|
|
|
if (!$this->f) throw new Exception('bad file descriptor');
|
2016-11-09 12:22:55 -05:00
|
|
|
$this->fgetcsv_args = [
|
2013-11-16 14:45:48 -05:00
|
|
|
$this->f,
|
|
|
|
isset($opts['row_size']) ? $opts['row_size'] : 4096,
|
|
|
|
isset($opts['delimiter']) ? $opts['delimiter'] : ',',
|
|
|
|
isset($opts['enclosure']) ? $opts['enclosure'] : '"',
|
|
|
|
isset($opts['escape']) ? $opts['escape'] : '\\',
|
2016-11-09 12:22:55 -05:00
|
|
|
];
|
2013-11-16 14:45:48 -05:00
|
|
|
$this->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function readRow(){
|
|
|
|
$this->curr = call_user_func_array('fgetcsv', $this->fgetcsv_args );
|
|
|
|
$this->rowCounter++;
|
|
|
|
if ($this->rowCounter == 1){
|
|
|
|
$this->processHeader();
|
|
|
|
} elseif ($this->curr) {
|
|
|
|
$this->processRow();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processHeader(){
|
|
|
|
if ($this->headers || $this->combine){
|
|
|
|
$this->header = $this->curr;
|
|
|
|
if ($this->headerCheckFunction){
|
|
|
|
$f = $this->headerCheckFunction;
|
|
|
|
$f($this->header);
|
|
|
|
}
|
|
|
|
$this->readRow();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRow(){
|
|
|
|
if ($this->combine)
|
|
|
|
$this->curr = array_combine($this->header, $this->curr);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function start(){
|
|
|
|
$this->rowCounter = 0;
|
|
|
|
rewind( $this->f );
|
|
|
|
$this->readRow();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rewind()
|
|
|
|
{
|
|
|
|
$this->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function current()
|
|
|
|
{
|
|
|
|
$curr = $this->curr;
|
|
|
|
$this->readRow();
|
|
|
|
return $curr;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function key()
|
|
|
|
{
|
|
|
|
return $this->rowCounter;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function next()
|
|
|
|
{
|
|
|
|
return $this->curr;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function valid(){
|
|
|
|
if( !$this->next() )
|
|
|
|
{
|
|
|
|
fclose( $this->f );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end class
|
2016-06-11 09:56:50 -04:00
|
|
|
# phpunit
|
2017-02-11 08:01:38 -05:00
|
|
|
snippet ase "$this->assertEquals($a, $b)"
|
|
|
|
$this->assertEquals(${1:$expected}, ${2:$actual});
|
|
|
|
snippet asne "$this->assertNotEquals($a, $b)"
|
|
|
|
$this->assertNotEquals(${1:$expected}, ${2:$actual});
|
|
|
|
snippet asf "$this->assertFalse($a)"
|
2016-06-11 09:56:50 -04:00
|
|
|
$this->assertFalse(${1});
|
2017-02-11 08:01:38 -05:00
|
|
|
snippet ast "$this->assertTrue($a)"
|
2016-06-11 09:56:50 -04:00
|
|
|
$this->assertTrue(${1});
|
2017-02-11 08:01:38 -05:00
|
|
|
snippet asfex "$this->assertFileExists('path/to/file')"
|
2016-06-11 09:56:50 -04:00
|
|
|
$this->assertFileExists(${1:'path/to/file'});
|
2017-02-11 08:01:38 -05:00
|
|
|
snippet asfnex "$this->assertFileNotExists('path/to/file')"
|
2016-06-11 09:56:50 -04:00
|
|
|
$this->assertFileNotExists(${1:'path/to/file'});
|
2017-02-11 08:01:38 -05:00
|
|
|
snippet ascon "$this->assertContains($needle, $haystack)"
|
2016-06-11 09:56:50 -04:00
|
|
|
$this->assertContains(${1:$needle}, ${2:$haystack});
|
2017-02-11 08:01:38 -05:00
|
|
|
snippet asncon "$this->assertNotContains($needle, $haystack)"
|
|
|
|
$this->assertNotContains(${1:$needle}, ${2:$haystack});
|
|
|
|
snippet ascono "$this->assertContainsOnly($needle, $haystack)"
|
|
|
|
$this->assertContainsOnly(${1:$needle}, ${2:$haystack});
|
|
|
|
snippet asconoi "$this->assertContainsOnlyInstancesOf(Example::class, $haystack)"
|
|
|
|
$this->assertContainsOnlyInstancesOf(${1:Example}::class, ${2:$haystack});
|
|
|
|
snippet ashk "$this->assertArrayHasKey($key, $array)"
|
2016-06-11 09:56:50 -04:00
|
|
|
$this->assertArrayHasKey(${1:$key}, ${2:$array});
|
2017-02-11 08:01:38 -05:00
|
|
|
snippet asnhk "$this->assertArrayNotHasKey($key, $array)"
|
2016-06-11 09:56:50 -04:00
|
|
|
this->assertArrayNotHasKey(${1:$key}, ${2:$array});
|
2017-02-11 08:01:38 -05:00
|
|
|
snippet ascha "$this->assertClassHasAttribute($name, Example::class)"
|
|
|
|
$this->assertClassHasAttribute(${1:$attributeName}, ${2:Example}::class);
|
|
|
|
snippet asi "$this->assertInstanceOf(Example::class, $actual)"
|
|
|
|
$this->assertInstanceOf(${1:Example}::class, ${2:$actual});
|
2018-08-25 12:13:42 -04:00
|
|
|
snippet asit "$this->assertInternalType('string', $actual)"
|
2017-02-11 08:01:38 -05:00
|
|
|
$this->assertInternalType(${1:'string'}, ${2:actual});
|
|
|
|
snippet asco "$this->assertCount($count, $haystack)"
|
|
|
|
$this->assertCount(${1:$expectedCount}, ${2:$haystack});
|
|
|
|
snippet asnco "$this->assertNotCount($count, $haystack)"
|
|
|
|
$this->assertNotCount(${1:$count}, ${2:$haystack});
|
|
|
|
snippet assub "$this->assertArraySubset($subset, $array)"
|
|
|
|
$this->assertArraySubset(${1:$subset}, ${2:$array});
|
|
|
|
snippet asnu "$this->assertNull($a)"
|
|
|
|
$this->assertNull(${1});
|
|
|
|
snippet asnnu "$this->assertNotNull($a)"
|
|
|
|
$this->assertNotNull(${1});
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet test "public function testXYZ() { ... }"
|
|
|
|
public function test${1}()
|
|
|
|
{
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2016-06-11 09:56:50 -04:00
|
|
|
}
|
|
|
|
snippet setup "protected function setUp() { ... }"
|
|
|
|
protected function setUp()
|
2013-12-28 13:23:13 -05:00
|
|
|
{
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2013-12-28 13:23:13 -05:00
|
|
|
}
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet teardown "protected function tearDown() { ... }"
|
|
|
|
protected function tearDown()
|
|
|
|
{
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2016-06-11 09:56:50 -04:00
|
|
|
}
|
2017-02-11 08:01:38 -05:00
|
|
|
snippet proph "$observer = $this->prophesize(SomeClass::class);"
|
|
|
|
$${1:observer} = $this->prophesize(${2:SomeClass}::class);
|
|
|
|
snippet mock "$mock = $this->createMock(SomeClass::class);"
|
|
|
|
$${1:mock} = $this->createMock(${2:SomeClass}::class);
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet exp "phpunit expects"
|
|
|
|
expects($this->${1:once}())
|
|
|
|
->method('${2}')
|
2017-02-11 08:01:38 -05:00
|
|
|
->with(${3})
|
|
|
|
->willReturn(${4});
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet testcmt "phpunit comment with group"
|
|
|
|
/**
|
|
|
|
* @group ${1}
|
|
|
|
*/
|
|
|
|
snippet fail "$this->fail()"
|
|
|
|
$this->fail(${1});
|
|
|
|
snippet marki "$this->markTestIncomplete()"
|
|
|
|
$this->markTestIncomplete(${1});
|
|
|
|
snippet marks "$this->markTestSkipped()"
|
|
|
|
$this->markTestSkipped(${1});
|
|
|
|
# end of phpunit snippets
|
|
|
|
snippet te "throw new Exception()"
|
2015-12-08 08:20:04 -05:00
|
|
|
throw new ${1:Exception}("${2:Error Processing Request}");
|
2016-02-20 08:13:10 -05:00
|
|
|
snippet fpc "file_put_contents" b
|
|
|
|
file_put_contents(${1:file}, ${2:content}${3:, FILE_APPEND});$0
|
|
|
|
snippet sr "str_replace"
|
|
|
|
str_replace(${1:search}, ${2:replace}, ${3:subject})$0
|
|
|
|
snippet ia "in_array"
|
|
|
|
in_array(${1:needle}, ${2:haystack})$0
|
|
|
|
snippet is "isset"
|
|
|
|
isset(${1:var})$0
|
|
|
|
snippet isa "isset array"
|
|
|
|
isset($${1:array}[${2:key}])$0
|
|
|
|
snippet in "is_null"
|
|
|
|
is_null($${1:var})$0
|
|
|
|
snippet fe "file_exists"
|
|
|
|
file_exists(${1:file})$0
|
|
|
|
snippet id "is_dir"
|
|
|
|
is_dir(${1:path})$0
|