PHP code example of yosoymitxel / scphp

1. Go to this page and download the library: Download yosoymitxel/scphp 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/ */

    

yosoymitxel / scphp example snippets


ScPHP::str_contiene('Hola mundo', 'Hola');

ScPHP::dev_echo('Título', 'Valor'); // <p id='' class='' style='' name=''>Título: Valor</p>

ScPHP::dev_var_dump([1,2]); // Imprime con una etiqueta <pre> un var_dump

ScPHP::dev_activar_depurar_global(true); // Activa o desactiva el modo debug de php

ScPHP::dev_echo_oculto('Esto solo lo veremos desde el HTML del sitio', true, 'id-para-ubicar-en-el-dom'); // Imprime un var dump oculto dentro del DOM


ScPHP::str_quitar_espacios_blancos('Hola mundo,   esto es una      prueba'); //Holamundo,estoesunaprueba

ScPHP::str_sin_caracteres_especiales('Eso está ahí'); //Eso esta ahi

ScPHP::str_contiene('Hola mundo', 'Hola'); // true

ScPHP::str_regex_extraer('1 - Hola mundo 2','\d'); // [1,2]

ScPHP::str_regex_reemplazar('Hola mundo 123', '\d+',' '); //Hola mundo 

ScPHP::str_regex_incluye('Hola mundo', '\d'); // false

ScPHP::is_array(array('valor'));

ScPHP::arr_incluye_regex(array('prueba'),'\w+')
index.php