Embed live local media (including video) into a reveal.js presentation
Update Prism Screenshot
Add Social Card Image
Add Faker Option To Title Field
Refactor Example Data For Mock Server
Add Prism Mock Server
Use UUIDs In Static Examples
Fix Angular Mock File Name
Fix Angular Mock Function Name
Add Angular Mocks
Update Contact Information / Add Icons
Add Development Cycle Comic Strip
Hello,
I've fixed building the PHAR file with Phing and made many improvements to the build system. I had to remove Phive, because it couldn't install a newer version of Phing.
Changes:
I hope you like those changes.
Danke.
Fixed building Phar.
Merge pull request #12 from fabiang/fix-build-envi
Fixed building Phar.
Rename "master", Improve Graphics, Add Hooks
The following code:
<?php
$document = new DOMDocument();
$document->loadXML('<element attribute="value"/>');
$attribute = $document->documentElement->getAttributeNode('attribute');
// output loaded attribute value
var_dump($attribute->textContent);
// change value
$attribute->textContent = 'new value';
// output changed value
var_dump($attribute->textContent);
Resulted in this output:
string(5) "value"
string(0) ""
But I expected this output instead:
string(5) "value"
string(9) "new value"
https://3v4l.org/ouRV0
This work in PHP Versions 5.6.1 to 5.6.13, it is broken for any PHP version after that.
PHP 8.2.1
No response
It seems that DOMAttr::$textContent
is broken, too (since PHP 5.6.14). Writing the property results in an empty value. Should this be addressed in this issue or to a separate one?