skip to Main Content

Laravel – docker hangs at build

docker blocks when running the command: docker-compose build nginx php-fpm workspace mysql redis redis-webui adminer; gives the the following error: CACHED [workspace 50/116] RUN if [ false = true ]; then if [ 8.3 != "8.3" ] && [ 8.3…

VIEW QUESTION

Laravel – Difficulties in extracting content from a SimpleXMLElement

I have this xml bellow : "<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body><soapenv:Fault><faultcode>soapenv:Server</faultcode><faultstring>For input string: ""</faultstring><detail /></soapenv:Fault></soapenv:Body></soapenv:Envelope>" I want to get the content of Body > Fault > faultcode, faultstring But idk why doens't work My source code : $xml = "<?xml version='1.0'…

VIEW QUESTION
Back To Top
Search