<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="http://wiki.billyrondon.com/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://wiki.billyrondon.com/feed.php">
        <title>WIKI de apuntes de Billy Rondón - informatica:lenguajes_de_programacion:php</title>
        <description></description>
        <link>http://wiki.billyrondon.com/</link>
        <image rdf:resource="http://wiki.billyrondon.com/lib/exe/fetch.php/wiki:dokuwiki.svg" />
       <dc:date>2026-06-04T20:24:28+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:php:php_array?rev=1744954830&amp;do=diff"/>
                <rdf:li rdf:resource="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:php:php_excel?rev=1744073290&amp;do=diff"/>
                <rdf:li rdf:resource="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:php:php_pdf?rev=1744073378&amp;do=diff"/>
                <rdf:li rdf:resource="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:php:php_pdo?rev=1780039493&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://wiki.billyrondon.com/lib/exe/fetch.php/wiki:dokuwiki.svg">
        <title>WIKI de apuntes de Billy Rondón</title>
        <link>http://wiki.billyrondon.com/</link>
        <url>http://wiki.billyrondon.com/lib/exe/fetch.php/wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:php:php_array?rev=1744954830&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-04-18T05:40:30+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>php_array</title>
        <link>http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:php:php_array?rev=1744954830&amp;do=diff</link>
        <description>PHP Array

Agregar

	*  &lt;https://www.php.net/manual/es/function.array-push.php&gt;



   $pila = array(&quot;naranja&quot;, &quot;plátano&quot;);
   array_push($pila, &quot;manzana&quot;, &quot;arándano&quot;);
   print_r($pila);



Otra forma:


   $canasta = [&quot;naranja&quot;,&quot;plátano&quot;]
   
   $columns[] = &quot;manzana&quot;;
   $columns[] = &quot;arándano&quot;;</description>
    </item>
    <item rdf:about="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:php:php_excel?rev=1744073290&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-04-08T00:48:10+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>php_excel</title>
        <link>http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:php:php_excel?rev=1744073290&amp;do=diff</link>
        <description>PHP EXCEL



  require_once &#039;PHPExcel-1.8/Classes/PHPExcel.php&#039;;

  //Identifica el tipo de excel.
  $input_file_type = PHPExcel_IOFactory::identify( $fileName );
  
  $excelReader = PHPExcel_IOFactory::createReaderForFile( $fileName );
  $excelObj = $excelReader-&gt;load( $fileName );

  $rpta[&#039;libros&#039;] = implode($excelObj-&gt;getSheetNames(),&#039;|&#039;) ;
  $rpta[&#039;libroactivo&#039;] = $excelObj-&gt;getSheetNames()[ $excelObj-&gt;getActiveSheetIndex() ];</description>
    </item>
    <item rdf:about="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:php:php_pdf?rev=1744073378&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-04-08T00:49:38+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>php_pdf</title>
        <link>http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:php:php_pdf?rev=1744073378&amp;do=diff</link>
        <description>PHP FPDF

PHP FPDI

iniciar FPDI sin composer:
&lt;https://stackoverflow.com/questions/47292751/fpdf-fpdi-error-fatal-error-class-setasign-fpdi-fpdftpl-not-found-in&gt;

&lt;https://stackoverflow.com/questions/46792713/php-class-fpdi-not-found-but-the-file-defining-it-is-included&gt;


require_once(&quot;libs/fpdf182/fpdf.php&quot;);
require_once(&quot;libs/FPDI-master/src/autoload.php&quot;);

$pdf = new \setasign\Fpdi\Fpdi();


Juntar dos pdf en un solo pdf

&lt;https://stackoverflow.com/questions/28744300/fpdf-mergin-2-pdf-fil…</description>
    </item>
    <item rdf:about="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:php:php_pdo?rev=1780039493&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-05-29T07:24:53+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>php_pdo</title>
        <link>http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:php:php_pdo?rev=1780039493&amp;do=diff</link>
        <description>PHP PDO

Mi configuración en PHP 8

Instalación XAMP

Problemas con UAC

	*  &lt;http://cursos15.blogspot.com/2018/01/xampp-desactivar-uac.html&gt;

PDO SQL SERVER en PHP 8.0

	*  &lt;https://stackoverflow.com/questions/65687871/could-not-find-driver-sqlsrv-php-8-0-1&gt;

Download SQLSRV59.EXE from Microsoft Drivers 5.9 for PHP for SQL Server is the latest general availability (GA) version

You will have to execute the file that you download and later copy the .dll files that correspond to the version you r…</description>
    </item>
</rdf:RDF>
