PHP Classes

File: libs/utils.php

Recommend this page to a friend!
  Classes of Everton da Rosa   Orion2   libs/utils.php   Download  
File: libs/utils.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Orion2
Convert files between CSV, SQL, XML, JSON formats
Author: By
Last change: Update of libs/utils.php
Date: 2 months ago
Size: 282 bytes
 

Contents

Class file image Download
<?php

//funções gerais

function noSpace($str)//retira espaços do início e fim
{
    return
trim($str);
}

function
toUpperCase($str)//coloca tudo em maiúscula
{
    return
strtoupper($str);
}

function
toLowerCase($str)//coloca tudo em maiúscula
{
    return
strtolower($str);
}

?>