/* * This file is part of the Symfony package. * * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ use Symfony\Polyfill\Mbstring as p; if (!function_exists('mb_convert_encoding')) { function mb_convert_encoding(array|string|null $string, ?string $to_encoding, array|string|null $from_encoding = null): array|string|false { return p\Mbstring::mb_convert_encoding($string ?? '', (string) $to_encoding, $from_encoding); } } if (!function_exists('mb_decode_mimeheader')) { function mb_decode_mimeheader(?string $string): string { return p\Mbstring::mb_decode_mimeheader((string) $string); } } if (!function_exists('mb_encode_mimeheader')) { function mb_encode_mimeheader(?string $string, ?string $charset = null, ?string $transfer_encoding = null, ?string $newline = "\r\n", ?int $indent = 0): string { return p\Mbstring::mb_encode_mimeheader((string) $string, $charset, $transfer_encoding, (string) $newline, (int) $indent); } } if (!function_exists('mb_decode_numericentity')) { function mb_decode_numericentity(?string $string, array $map, ?string $encoding = null): string { return p\Mbstring::mb_decode_numericentity((string) $string, $map, $encoding); } } if (!function_exists('mb_encode_numericentity')) { function mb_encode_numericentity(?string $string, array $map, ?string $encoding = null, ?bool $hex = false): string { return p\Mbstring::mb_encode_numericentity((string) $string, $map, $encoding, (bool) $hex); } } if (!function_exists('mb_convert_case')) { function mb_convert_case(?string $string, ?int $mode, ?string $encoding = null): string { return p\Mbstring::mb_convert_case((string) $string, (int) $mode, $encoding); } } if (!function_exists('mb_internal_encoding')) { function mb_internal_encoding(?string $encoding = null): string|bool { return p\Mbstring::mb_internal_encoding($encoding); } } if (!function_exists('mb_language')) { function mb_language(?string $language = null): string|bool { return p\Mbstring::mb_language($language); } } if (!function_exists('mb_list_encodings')) { function mb_list_encodings(): array { return p\Mbstring::mb_list_encodings(); } } if (!function_exists('mb_encoding_aliases')) { function mb_encoding_aliases(?string $encoding): array { return p\Mbstring::mb_encoding_aliases((string) $encoding); } } if (!function_exists('mb_check_encoding')) { function mb_check_encoding(array|string|null $value = null, ?string $encoding = null): bool { return p\Mbstring::mb_check_encoding($value, $encoding); } } if (!function_exists('mb_detect_encoding')) { function mb_detect_encoding(?string $string, array|string|null $encodings = null, ?bool $strict = false): string|false { return p\Mbstring::mb_detect_encoding((string) $string, $encodings, (bool) $strict); } } if (!function_exists('mb_detect_order')) { function mb_detect_order(array|string|null $encoding = null): array|bool { return p\Mbstring::mb_detect_order($encoding); } } if (!function_exists('mb_parse_str')) { function mb_parse_str(?string $string, &$result = []): bool { parse_str((string) $string, $result); return (bool) $result; } } if (!function_exists('mb_strlen')) { function mb_strlen(?string $string, ?string $encoding = null): int { return p\Mbstring::mb_strlen((string) $string, $encoding); } } if (!function_exists('mb_strpos')) { function mb_strpos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): int|false { return p\Mbstring::mb_strpos((string) $haystack, (string) $needle, (int) $offset, $encoding); } } if (!function_exists('mb_strtolower')) { function mb_strtolower(?string $string, ?string $encoding = null): string { return p\Mbstring::mb_strtolower((string) $string, $encoding); } } if (!function_exists('mb_strtoupper')) { function mb_strtoupper(?string $string, ?string $encoding = null): string { return p\Mbstring::mb_strtoupper((string) $string, $encoding); } } if (!function_exists('mb_substitute_character')) { function mb_substitute_character(string|int|null $substitute_character = null): string|int|bool { return p\Mbstring::mb_substitute_character($substitute_character); } } if (!function_exists('mb_substr')) { function mb_substr(?string $string, ?int $start, ?int $length = null, ?string $encoding = null): string { return p\Mbstring::mb_substr((string) $string, (int) $start, $length, $encoding); } } if (!function_exists('mb_stripos')) { function mb_stripos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): int|false { return p\Mbstring::mb_stripos((string) $haystack, (string) $needle, (int) $offset, $encoding); } } if (!function_exists('mb_stristr')) { function mb_stristr(?string $haystack, ?string $needle, ?bool $before_needle = false, ?string $encoding = null): string|false { return p\Mbstring::mb_stristr((string) $haystack, (string) $needle, (bool) $before_needle, $encoding); } } if (!function_exists('mb_strrchr')) { function mb_strrchr(?string $haystack, ?string $needle, ?bool $before_needle = false, ?string $encoding = null): string|false { return p\Mbstring::mb_strrchr((string) $haystack, (string) $needle, (bool) $before_needle, $encoding); } } if (!function_exists('mb_strrichr')) { function mb_strrichr(?string $haystack, ?string $needle, ?bool $before_needle = false, ?string $encoding = null): string|false { return p\Mbstring::mb_strrichr((string) $haystack, (string) $needle, (bool) $before_needle, $encoding); } } if (!function_exists('mb_strripos')) { function mb_strripos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): int|false { return p\Mbstring::mb_strripos((string) $haystack, (string) $needle, (int) $offset, $encoding); } } if (!function_exists('mb_strrpos')) { function mb_strrpos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): int|false { return p\Mbstring::mb_strrpos((string) $haystack, (string) $needle, (int) $offset, $encoding); } } if (!function_exists('mb_strstr')) { function mb_strstr(?string $haystack, ?string $needle, ?bool $before_needle = false, ?string $encoding = null): string|false { return p\Mbstring::mb_strstr((string) $haystack, (string) $needle, (bool) $before_needle, $encoding); } } if (!function_exists('mb_get_info')) { function mb_get_info(?string $type = 'all'): array|string|int|false { return p\Mbstring::mb_get_info((string) $type); } } if (!function_exists('mb_http_output')) { function mb_http_output(?string $encoding = null): string|bool { return p\Mbstring::mb_http_output($encoding); } } if (!function_exists('mb_strwidth')) { function mb_strwidth(?string $string, ?string $encoding = null): int { return p\Mbstring::mb_strwidth((string) $string, $encoding); } } if (!function_exists('mb_substr_count')) { function mb_substr_count(?string $haystack, ?string $needle, ?string $encoding = null): int { return p\Mbstring::mb_substr_count((string) $haystack, (string) $needle, $encoding); } } if (!function_exists('mb_output_handler')) { function mb_output_handler(?string $string, ?int $status): string { return p\Mbstring::mb_output_handler((string) $string, (int) $status); } } if (!function_exists('mb_http_input')) { function mb_http_input(?string $type = null): array|string|false { return p\Mbstring::mb_http_input($type); } } if (!function_exists('mb_convert_variables')) { function mb_convert_variables(?string $to_encoding, array|string|null $from_encoding, mixed &$var, mixed &...$vars): string|false { return p\Mbstring::mb_convert_variables((string) $to_encoding, $from_encoding ?? '', $var, ...$vars); } } if (!function_exists('mb_ord')) { function mb_ord(?string $string, ?string $encoding = null): int|false { return p\Mbstring::mb_ord((string) $string, $encoding); } } if (!function_exists('mb_chr')) { function mb_chr(?int $codepoint, ?string $encoding = null): string|false { return p\Mbstring::mb_chr((int) $codepoint, $encoding); } } if (!function_exists('mb_scrub')) { function mb_scrub(?string $string, ?string $encoding = null): string { $encoding ??= mb_internal_encoding(); return mb_convert_encoding((string) $string, $encoding, $encoding); } } if (!function_exists('mb_str_split')) { function mb_str_split(?string $string, ?int $length = 1, ?string $encoding = null): array { return p\Mbstring::mb_str_split((string) $string, (int) $length, $encoding); } } if (!function_exists('mb_str_pad')) { function mb_str_pad(string $string, int $length, string $pad_string = ' ', int $pad_type = STR_PAD_RIGHT, ?string $encoding = null): string { return p\Mbstring::mb_str_pad($string, $length, $pad_string, $pad_type, $encoding); } } if (extension_loaded('mbstring')) { return; } if (!defined('MB_CASE_UPPER')) { define('MB_CASE_UPPER', 0); } if (!defined('MB_CASE_LOWER')) { define('MB_CASE_LOWER', 1); } if (!defined('MB_CASE_TITLE')) { define('MB_CASE_TITLE', 2); } ¿Por qué celebramos el día del padre? por dateando.com – Ultimas Noticias Venezuela

¿Por qué celebramos el día del padre? por dateando.com

0
Camilo-Ibrahim-Issa-Por-qué-celebramos-el-día-del-padre

[ad_1]

Comparte en tus redes sociales

Al igual que las madres, los padres son una figura importante en el crecimiento de un niño, ya que aportan para el desarrollo de la personalidad, seguridad y formación durante todos sus años y etapas. Cada año, al igual que las madres, se celebra el día del padre, un día especial donde a los papás se les conmemora, celebra y recuerda lo especial que son para nuestra vida, pero, ¿sabemos dónde se origina el día del padre?

El día del padre tiene origen en Estados Unidos cuando Sonora Smart Dodd, quien era hija de un soldado veterano de la Guerra Civil estadounidense, quiso reconocer el valiente trabajo de su padre al educar a seis hijos solo, pues su esposa murió dando a luz a su sexto hijo.

Para el año de 1909 a Sonora se le ocurrió festejar y agradecer la labor de su padre, y así como las madres tenían un día especial, le pareció que los hombres también debían tener una fecha para ser homenajeados y honrados por sus hijos.

Cuando salió esta idea a la luz pública se propuso que la celebración tuviera lugar el cinco de junio, pero no resultó viable hasta el año 1924 cuando el presidente de Estados Unidos de aquella época, apoyó la idea de que se festejara el día del padre pero sería el tercer domingo del mismo mes.

Desde ese momento la voz se corrió por América Latina, Europa, Asia y África. Existe la teoría de que el día del padre tiene que ver también con la celebración a San José, pero esta se cruza en muchos países con el festejo del día del hombre, por lo que en muchos lugares del mundo el día del padre no se celebra en la misma fecha.

Por otra parte, con el paso del tiempo, las tiendas empezaron a sacar partido del tema, a promover y vender productos especialmente dirigidos a los padres, lo que llamó la atención de muchos hijos agradecidos, que encontraron ahí una forma de expresar el afecto a sus padres por medio de un regalo.

camilo ibrahim issa - [Camilo Ibrahim]: ¿Por qué celebramos el día del padre?

¿Cuándo se celebra el día del padre en el mundo?

Aunque la mayoría de las fechas más comunes son el 19 de marzo y el tercer domingo de junio, en otros países del mundo existe una variación:

  • En España e Italia han escogido hacerlo en el tercer mes del año y, en concreto, en la fecha del 19 de marzo porque se festeja la onomástica de San José, esto con motivo a rendirle homenaje al padre de Jesús y el esposo de la Virgen María.
  •  En otros países que también lo celebran el 19 de marzo en esta fecha son Marruecos, Andorra, Bolivia, Croacia, Honduras, Liechtenstein, Mozambique o Portugal.
  • En Estados Unidos, México, Argentina, Chile, Colombia, Costa Rica, Cuba, Ecuador, Panamá, Paraguay, Perú, Puerto Rico o Venezuela el gran día para los papás es el tercer domingo de junio.
  •  Otras fechas señaladas en el calendario para este motivo en el resto del planeta son 23 de febrero en Rusia, 21 de mayo Alemania, 14 de junio Austria y Bélgica, 17 de junio El Salvador y Guatemala, 26 de julio República Dominicana, 9 de agosto Brasil y 5 de diciembre Tailandia.
camilo ibrahim issa - [Camilo Ibrahim]: ¿Por qué celebramos el día del padre?

¿Qué regalarle a los padres?

La Cámara Venezolana de Centros Comerciales, Comerciantes y Afines (Cavececo) quiere que los padres celebren este día por todo lo alto y que más que acompañar esta festividad con un hermoso regalo.

Por esta razón, queremos compartir tres ideas que harán que este día un día especial:

  • Llévalo a comer: Dentro de los centros comerciales hay muchos restaurantes u opciones de comida para llevar o para comer allí y pasar un rato diferente, que sin duda hará que ese domingo sea uno completamente diferente.
  • Regálale su fragancia favorita: A los hombres les encanta oler divino, así que regalar un perfume siempre será una excelente opción para regalar.
  • Una tarde de cine: Ve a tu centro comercial favorito y regálale entradas para ver la película que esperaba. Sin duda, le va a encantar.

[ad_2]

Source link

Deja un comentario

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *