Usuario:ManuelRomero/php
De WikiEducator
< Usuario:ManuelRomero
Revisión a fecha de 00:01 21 abr 2020; ManuelRomero (Discusión | contribuciones)
Contenido
API
https://medium.com/the-era-of-apis/how-to-use-an-api-with-php-complete-beginners-guide-4283f9f8d9b3 https://docs.rapidapi.com/docs/api-pricing
Para bind_param
- Usar el método como una llamada callback usando la función del sistema 'call_user_func'
- https://www.php.net/manual/es/function.call-user-func-array.php
$con = new mysqli(...); $stmt = $con->stmt_init (); $sentencia = "Select * from tabla where c1=?, and c2=?"; $stmt->prepare($sentencia); $tipos ="ss"; $parametros =[$tipos, $v1, $v2]; if ( call_user_func_array( [$stmt, 'bind_param'], ( $parametros ) ) === false ) echo "OK"; else echo "No ok!!";
Usar el operador de desempaquetado o splat operator ...
https://www.php.net/manual/en/migration56.new-features.php#migration56.new-features.splat
$con = new mysqli(...); $stmt = $con->stmt_init (); $sentencia = "Select * from tabla where c1=?, and c2=?"; $stmt->prepare($sentencia); $tipos ="ss"; $parametros =[$v1, $v2]; $stmt->bind_param($tipos, ...&$parametros)
Realizar solicitud curl
https://superuser.com/questions/149329/what-is-the-curl-command-line-syntax-to-do-a-post-request
- Muy interesante de de lazy (copiar del inspect element que ofrece el navegador)
Jupyter para php
- Investigar como usando conda puedo crear un entorno de php y crear con jupyter una especi de curso con su nootebook
https://github.com/Litipk/Jupyter-PHP https://anaconda.org/auto/php