This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Mexlike Documentation (Spanish): https://mexlike.io/como-hacer-web-scraping-con-php-simple-html-dom | |
// Call dependency. Download page: https://sourceforge.net/projects/simplehtmldom/files/ | |
require 'simple_html_dom.php'; | |
// Create DOM from URL or file | |
$html = file_get_html('https://www.tripadvisor.com/Hotels-g150810-Isla_Mujeres_Yucatan_Peninsula-Hotels.html'); | |
// List of hotels | |
$wrap_hotels = $html->find('div.prw_meta_hsx_responsive_listing'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return [ | |
/* | |
|-------------------------------------------------------------------------- | |
| Pagination Language Lines | |
|-------------------------------------------------------------------------- | |
| | |
| The following language lines are used by the paginator library to build |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n | |
es: | |
devise: | |
confirmations: | |
confirmed: "Su cuenta ya ha sido confirmada. Por favor, intente ingresar." | |
send_instructions: "Recibirá un correo electrónico con instrucciones sobre cómo reiniciar su contraseña en unos minutos." | |
send_paranoid_instructions: "Si su correo electrónico existe en nuestra base de datos, usted recibirá un enlace para reiniciar su contraseña en unos minutos." | |
failure: | |
already_authenticated: "Ya está dentro del sistema." |