PHP code example of sebacarrasco93 / utilidades

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

    

sebacarrasco93 / utilidades example snippets


return Utilidades::{nombre_método}({parámetro(s)});

return Utilidades::peso_chileno(1500); // $1.500

return Utilidades::espacios('este  es   un  texto'); // este es un texto

return Utilidades::espacios('este  es   un  texto', true); // ['este', 'es', 'un', 'texto']

return Utilidades::nombre('sEbAstiÁn'); // Sebastián

return Utilidades::nombre('sEbAstián  cArrAscO  pOblEte'); // Sebastián Carrasco Poblete

return Utilidades::p_nombre('sEbAstiÁn'); // Sebastián

return Utilidades::rut('183765-4'); // null (pocos caracteres)
return Utilidades::rut('183765884-0'); // null (muchos caracteres)

return Utilidades::rut('18376588-2'); // null (dígito verificador malo)

return Utilidades::rut('18376588-4'); // 18376588-4
return Utilidades::rut('18.376.588-4'); // 18376588-4

return Utilidades::rut('5717465-k'); // 5717465-K
return Utilidades::rut('5.717.465-K'); // 5717465-K

return Utilidades::titulo('Este es el título', 'Nombre del producto'); // Este es el título | Nombre del producto
return Utilidades::titulo('Este es el título'); // Este es el título

return Utilidades::sop(1, 'Producto', 'Productos'); // Producto
return Utilidades::sop(2, 'Producto', 'Productos'); // Productos

return Utilidades::codificar_url('Esta es mi casa'); // Esta%20es%20mi%20casa

return Utilidades::link_waze('Esta es mi casa'); // https://waze.com/ul?q=Esta%20es%20mi%20casa

return Utilidades::link_maps('Esta es mi casa'); // https://www.google.com/maps/search/?api=1&query=Esta%20es%20mi%20casa

return Utilidades::whatsapp('Quiero consultar'); // https://wa.me/?text=Quiero%20consultar
return Utilidades::whatsapp('Quiero consultar', '+56900000000'); // https://wa.me/56900000000?text=Quiero%20consultar
return Utilidades::whatsapp(null, '+56900000000'); // https://wa.me/56900000000
return Utilidades::whatsapp(null, null); // null

// web.php

Route::get('test', function () {
    // Contenido...
})->name('test.index');

Route::currentRouteNameHas('test.index'); // true o false

Vite::img('resources/img/seba.png');