Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>yo_tagNew to Visual Studio Code? Get it now.
yo_tag

yo_tag

Fabian Quintanilla

|
649 installs
| (0) | Free
Crea el tag de desarrollador con fecha
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Forma de uso

Presionar Ctrl+Mayús+P para abrir la barra de comandos y escribir Tag HTML, Tag PHP, Tag CSS ó Tag JS.

Snippets

HTML

_php

<?php  ?>

_php=

<?=  ?>

PHP

_query_paramas

$sql = "";
$params = array();
$result = $Base->query_params($Base->conn, $sql, $params);

$error = $Base->last_error($Base->conn);
if ($error != ''){
    throw new Exception($error);
}

while($row = $Base->to_object($result)){
    print_r($row);
}

_php_error

/**ERRORES PHP VISIBLES**/
error_reporting(E_ALL);
ini_set('display_errors', '1');

_dblink

SELECT
	dato
FROM dblink(
	dblink,
	'query'
) AS x(
	dato tipo_dato
);

JavaScript

_dump

console.log('${1}', ${1});

_send

var ${1:params} = '&${2:id=}';
var ${3:RS} = ${4:BD}.send('cmd=${5:comando}'+${1:params});
if(${3:RS}.error != ''){
    throw ${3:RS}.error;
}
${0}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft