function renderNumero($numero){
// Si el número es entero, no mostrar decimales
if (is_int($numero) || (is_numeric($numero) && floor($numero) == $numero)) {
return number_format($numero, 0, ',', '.');
}
// Si tiene decimales, mostrar hasta 3 decimales
return number_format($numero, 3, ',', '.');
}
function obtenerNumeroPrefijo(string $texto): ?int {
// Ejemplos:
// var_dump(obtenerNumeroPrefijo("1-Frasco Linea Black")); // int(1)
// var_dump(obtenerNumeroPrefijo("2343-hola")); // int(2343)
if (preg_match('/^\s*([0-9]+)\s*-/u', $texto, $m)) {
return (int)$m[1];
}
return null; // o 0 según prefieras
}
/** Suma todos los valores de un arreglo y devuelve la sumatoria */
function sumArrayValues(array $array): float {
$sum = 0;
array_walk_recursive($array, function($value) use (&$sum) {
if (is_numeric($value)) {
$sum += $value;
}
});
return $sum;
}
function numberEEUUtoARG($num){
return str_replace('.',',',$num);
}
function object_to_array($obj, &$arr)
{
if (!is_object($obj) && !is_array($obj))
{
$arr = $obj;
return $arr;
}
foreach ($obj as $key => $value)
{
if (!empty($value))
{
$arr[$key] = array();
object_to_array($value, $arr[$key]);
}
else {$arr[$key] = $value;}
}
return $arr;
}
function tagsDbtoSelect($array){
$toreturn = [];
if(
is_array($array)
){
foreach ($array as $value) {
$toreturn[$value] = $value;
}
}
return $toreturn;
}
function is_base64($s){
// Check if there are valid base64 characters
if (!preg_match('/^[a-zA-Z0-9\/\r\n+]*={0,2}$/', $s)) return false;
// Decode the string in strict mode and check the results
$decoded = base64_decode($s, true);
if(false === $decoded) return false;
// Encode the string again
if(base64_encode($decoded) != $s) return false;
return true;
}
function isJson($string) {
json_decode($string);
return (json_last_error() == JSON_ERROR_NONE);
}
function redondeado ($numero, $decimales) {
$factor = pow(10, $decimales);
return (round($numero*$factor)/$factor);
}
function roundUpToAny($n,$x=5) { return (round($n)%$x === 0) ? round($n) : round(($n+$x/2)/$x)*$x; }
function imputListToSelect2($array){
if(
is_array($array)
&& count($array) > 0
){
foreach ($array as $clave => $value) {
$__tmp[] = [
"id" => (int)$clave,
"text" => $value
];
}
return $__tmp;
}
return null;
}
function formatoNumerico($numero,$decimales = 2){
return number_format($numero, $decimales, ",", ".");
}
function arrayToTable($array) {
if (empty($array) || !is_array($array)) {
return "El parámetro no es un array válido.";
}
// Obtener las claves de la primera fila para las cabeceras de la tabla
$headers = array_keys(reset($array));
$table = '
';
$table .= '';
foreach ($headers as $header) {
$table .= '| ' . htmlspecialchars($header) . ' | ';
}
$table .= '
';
foreach ($array as $row) {
$table .= '';
foreach ($row as $cell) {
$table .= '| ' . htmlspecialchars($cell) . ' | ';
}
$table .= '
';
}
$table .= '
';
return $table;
}
function numberFormatPrecision($number, $precision = 2, $separator = '.')
{
$numberParts = explode($separator, $number);
$response = $numberParts[0];
if(count($numberParts)>1){
$response .= $separator;
$response .= str_pad(substr($numberParts[1], 0, $precision), 2, "0");
}
return $response;
}
function formatoFechaParaDB($fecha){
// FORMATO DD-MM-YYYY HH:MM:SS
if(
is_null($fecha)
|| empty($fecha)
){ return null; }
if(!empty($fecha)){
$dia = substr($fecha,0,2);
$mes = substr($fecha,3,2);
$anio = substr($fecha,6,4);
$hora = substr($fecha,11,2);
$minuto = substr($fecha,14,2);
$segundo = substr($fecha,-2);
$fecha = $anio."-".$mes."-".$dia." ".substr($fecha,11);
// $fecha = $dia."-".$mes." ".$hora.":".$minuto;
return $fecha;
}
return '';
}
function formatoNumericoParaDB($numero){
return numberFormatPrecision($numero);
}
function showMeTheMoney($amount){
if(
empty($amount)
){
return "$ 0,00";
}
$numberParts = explode('.', $amount);
$response = number_format(isset($numberParts[0]) && !empty($numberParts[0]) ? $numberParts[0] : 0, 0, ',','.');
if(count($numberParts)>1){
$response .= ',';
$response .= str_pad(substr(isset($numberParts[1]) ? $numberParts[1] : 0, 0, 2), 2, "0");
}else{
$response .= ',00';
}
return "$ ".$response;
}
function showMeTheMoneyISO($amount,$iso = ''){
if(empty($amount))
$amount = 0;
return number_format($amount, 2);
}
function listingToSelect($obj){
$tmp = [];
if(is_array($obj) && count($obj) > 0){
foreach ($obj as $ob) {
if(
isset($ob->nombre)
){
$tmp[$ob->id] = $ob->nombre;
}else if(
isset($ob->name)
){
$tmp[$ob->id] = $ob->name;
}
}
}
return $tmp;
}
function validateDate($date, $format = 'Y-m-d H:i:s') {
$d = DateTime::createFromFormat($format, $date);
return $d && $d->format($format) == $date;
}
function ordenarFechaParaDB($fecha){
// FORMATO DD-MM-YYYY HH:MM:SS
if(!empty($fecha)){
$dia = substr($fecha,0,2);
$mes = substr($fecha,3,2);
$anio = substr($fecha,6,4);
$hora = substr($fecha,11,2);
$minuto = substr($fecha,14,2);
$segundo = substr($fecha,-2);
$fecha = $anio."-".$mes."-".$dia." ".substr($fecha,11);
// $fecha = $dia."-".$mes." ".$hora.":".$minuto;
return $fecha;
}
return '';
}
function url_slug($str, $options = array()) {
/*
// Basic usage
echo "This is an example string. Nothing fancy." . "\n";
echo url_slug("This is an example string. Nothing fancy.") . "\n\n";
// Example using French with unwanted characters ('?)
echo "Qu'en est-il français? Ça marche alors?" . "\n";
echo url_slug("Qu'en est-il français? Ça marche alors?") . "\n\n";
// Example using transliteration
echo "Что делать, если я не хочу, UTF-8?" . "\n";
echo url_slug("Что делать, если я не хочу, UTF-8?", array('transliterate' => true)) . "\n\n";
// Example using transliteration on an unsupported language
echo "מה אם אני לא רוצה UTF-8 תווים?" . "\n";
echo url_slug("מה אם אני לא רוצה UTF-8 תווים?", array('transliterate' => true)) . "\n\n";
// Some other options
echo "This is an Example String. What's Going to Happen to Me?" . "\n";
echo url_slug(
"This is an Example String. What's Going to Happen to Me?",
array(
'delimiter' => '_',
'limit' => 40,
'lowercase' => false,
'replacements' => array(
'/\b(an)\b/i' => 'a',
'/\b(example)\b/i' => 'Test'
)
)
);
*/
// Make sure string is in UTF-8 and strip invalid UTF-8 characters
$str = mb_convert_encoding((string)$str, 'UTF-8', mb_list_encodings());
$defaults = array(
'delimiter' => '-',
'limit' => null,
'lowercase' => true,
'replacements' => array(),
'transliterate' => false,
);
// Merge options
$options = array_merge($defaults, $options);
$char_map = array(
// Latin
'À' => 'A', 'Á' => 'A', 'Â' => 'A', 'Ã' => 'A', 'Ä' => 'A', 'Å' => 'A', 'Æ' => 'AE', 'Ç' => 'C',
'È' => 'E', 'É' => 'E', 'Ê' => 'E', 'Ë' => 'E', 'Ì' => 'I', 'Í' => 'I', 'Î' => 'I', 'Ï' => 'I',
'Ð' => 'D', 'Ñ' => 'N', 'Ò' => 'O', 'Ó' => 'O', 'Ô' => 'O', 'Õ' => 'O', 'Ö' => 'O', 'Ő' => 'O',
'Ø' => 'O', 'Ù' => 'U', 'Ú' => 'U', 'Û' => 'U', 'Ü' => 'U', 'Ű' => 'U', 'Ý' => 'Y', 'Þ' => 'TH',
'ß' => 'ss',
'à' => 'a', 'á' => 'a', 'â' => 'a', 'ã' => 'a', 'ä' => 'a', 'å' => 'a', 'æ' => 'ae', 'ç' => 'c',
'è' => 'e', 'é' => 'e', 'ê' => 'e', 'ë' => 'e', 'ì' => 'i', 'í' => 'i', 'î' => 'i', 'ï' => 'i',
'ð' => 'd', 'ñ' => 'n', 'ò' => 'o', 'ó' => 'o', 'ô' => 'o', 'õ' => 'o', 'ö' => 'o', 'ő' => 'o',
'ø' => 'o', 'ù' => 'u', 'ú' => 'u', 'û' => 'u', 'ü' => 'u', 'ű' => 'u', 'ý' => 'y', 'þ' => 'th',
'ÿ' => 'y',
// Latin symbols
'©' => '(c)',
// Greek
'Α' => 'A', 'Β' => 'B', 'Γ' => 'G', 'Δ' => 'D', 'Ε' => 'E', 'Ζ' => 'Z', 'Η' => 'H', 'Θ' => '8',
'Ι' => 'I', 'Κ' => 'K', 'Λ' => 'L', 'Μ' => 'M', 'Ν' => 'N', 'Ξ' => '3', 'Ο' => 'O', 'Π' => 'P',
'Ρ' => 'R', 'Σ' => 'S', 'Τ' => 'T', 'Υ' => 'Y', 'Φ' => 'F', 'Χ' => 'X', 'Ψ' => 'PS', 'Ω' => 'W',
'Ά' => 'A', 'Έ' => 'E', 'Ί' => 'I', 'Ό' => 'O', 'Ύ' => 'Y', 'Ή' => 'H', 'Ώ' => 'W', 'Ϊ' => 'I',
'Ϋ' => 'Y',
'α' => 'a', 'β' => 'b', 'γ' => 'g', 'δ' => 'd', 'ε' => 'e', 'ζ' => 'z', 'η' => 'h', 'θ' => '8',
'ι' => 'i', 'κ' => 'k', 'λ' => 'l', 'μ' => 'm', 'ν' => 'n', 'ξ' => '3', 'ο' => 'o', 'π' => 'p',
'ρ' => 'r', 'σ' => 's', 'τ' => 't', 'υ' => 'y', 'φ' => 'f', 'χ' => 'x', 'ψ' => 'ps', 'ω' => 'w',
'ά' => 'a', 'έ' => 'e', 'ί' => 'i', 'ό' => 'o', 'ύ' => 'y', 'ή' => 'h', 'ώ' => 'w', 'ς' => 's',
'ϊ' => 'i', 'ΰ' => 'y', 'ϋ' => 'y', 'ΐ' => 'i',
// Turkish
'Ş' => 'S', 'İ' => 'I', 'Ç' => 'C', 'Ü' => 'U', 'Ö' => 'O', 'Ğ' => 'G',
'ş' => 's', 'ı' => 'i', 'ç' => 'c', 'ü' => 'u', 'ö' => 'o', 'ğ' => 'g',
// Russian
'А' => 'A', 'Б' => 'B', 'В' => 'V', 'Г' => 'G', 'Д' => 'D', 'Е' => 'E', 'Ё' => 'Yo', 'Ж' => 'Zh',
'З' => 'Z', 'И' => 'I', 'Й' => 'J', 'К' => 'K', 'Л' => 'L', 'М' => 'M', 'Н' => 'N', 'О' => 'O',
'П' => 'P', 'Р' => 'R', 'С' => 'S', 'Т' => 'T', 'У' => 'U', 'Ф' => 'F', 'Х' => 'H', 'Ц' => 'C',
'Ч' => 'Ch', 'Ш' => 'Sh', 'Щ' => 'Sh', 'Ъ' => '', 'Ы' => 'Y', 'Ь' => '', 'Э' => 'E', 'Ю' => 'Yu',
'Я' => 'Ya',
'а' => 'a', 'б' => 'b', 'в' => 'v', 'г' => 'g', 'д' => 'd', 'е' => 'e', 'ё' => 'yo', 'ж' => 'zh',
'з' => 'z', 'и' => 'i', 'й' => 'j', 'к' => 'k', 'л' => 'l', 'м' => 'm', 'н' => 'n', 'о' => 'o',
'п' => 'p', 'р' => 'r', 'с' => 's', 'т' => 't', 'у' => 'u', 'ф' => 'f', 'х' => 'h', 'ц' => 'c',
'ч' => 'ch', 'ш' => 'sh', 'щ' => 'sh', 'ъ' => '', 'ы' => 'y', 'ь' => '', 'э' => 'e', 'ю' => 'yu',
'я' => 'ya',
// Ukrainian
'Є' => 'Ye', 'І' => 'I', 'Ї' => 'Yi', 'Ґ' => 'G',
'є' => 'ye', 'і' => 'i', 'ї' => 'yi', 'ґ' => 'g',
// Czech
'Č' => 'C', 'Ď' => 'D', 'Ě' => 'E', 'Ň' => 'N', 'Ř' => 'R', 'Š' => 'S', 'Ť' => 'T', 'Ů' => 'U',
'Ž' => 'Z',
'č' => 'c', 'ď' => 'd', 'ě' => 'e', 'ň' => 'n', 'ř' => 'r', 'š' => 's', 'ť' => 't', 'ů' => 'u',
'ž' => 'z',
// Polish
'Ą' => 'A', 'Ć' => 'C', 'Ę' => 'e', 'Ł' => 'L', 'Ń' => 'N', 'Ó' => 'o', 'Ś' => 'S', 'Ź' => 'Z',
'Ż' => 'Z',
'ą' => 'a', 'ć' => 'c', 'ę' => 'e', 'ł' => 'l', 'ń' => 'n', 'ó' => 'o', 'ś' => 's', 'ź' => 'z',
'ż' => 'z',
// Latvian
'Ā' => 'A', 'Č' => 'C', 'Ē' => 'E', 'Ģ' => 'G', 'Ī' => 'i', 'Ķ' => 'k', 'Ļ' => 'L', 'Ņ' => 'N',
'Š' => 'S', 'Ū' => 'u', 'Ž' => 'Z',
'ā' => 'a', 'č' => 'c', 'ē' => 'e', 'ģ' => 'g', 'ī' => 'i', 'ķ' => 'k', 'ļ' => 'l', 'ņ' => 'n',
'š' => 's', 'ū' => 'u', 'ž' => 'z'
);
// Make custom replacements
$str = preg_replace(array_keys($options['replacements']), $options['replacements'], $str);
// Transliterate characters to ASCII
if ($options['transliterate']) {
$str = str_replace(array_keys($char_map), $char_map, $str);
}
// Replace non-alphanumeric characters with our delimiter
$str = preg_replace('/[^\p{L}\p{Nd}]+/u', $options['delimiter'], $str);
// Remove duplicate delimiters
$str = preg_replace('/(' . preg_quote($options['delimiter'], '/') . '){2,}/', '$1', $str);
// Truncate slug to max. characters
$str = mb_substr($str, 0, ($options['limit'] ? $options['limit'] : mb_strlen($str, 'UTF-8')), 'UTF-8');
// Remove delimiter from ends
$str = trim($str, $options['delimiter']);
return $options['lowercase'] ? mb_strtolower($str, 'UTF-8') : $str;
}
//str_starts_with
if(!function_exists('str_starts_with')) {
function str_starts_with($haystack,$needle) {
//str_starts_with(string $haystack, string $needle): bool
$strlen_needle = mb_strlen($needle);
if(mb_substr($haystack,0,$strlen_needle)==$needle) {
return true;
}
return false;
}
}
//str_ends_with
if(!function_exists('str_ends_with')) {
//str_ends_with(string $haystack, string $needle): bool
function str_ends_with($haystack,$needle) {
//str_starts_with(string $haystack, string $needle): bool
$strlen_needle = mb_strlen($needle);
if(mb_substr($haystack,-$strlen_needle,$strlen_needle)==$needle) {
return true;
}
return false;
}
}
?>
""