I honestly tried to find a solution for php, but a lot of threads sound similar, but are not applicable for me or are for completely different languages. I want to split an xml file based on nodes. Ideally multiple nodes, but of course one is enough and could be applied multiple times. e.g. I want to split th…
Compare values from a single array with multiple series of arrays, then echo the result
With the following script I am able to calculate the frequency of every number from 10 different arrays, then echoes the result sorting the numbers in frequency classes (ex. values that appear one time : x, y, z , values that appear two times : a, b, c, ….etc.) My problem : I would like to calculate the…
Symfony mocking repository for testing
I’m trying to mock a repository containing all modules, and it has a method called findAll() that returns all elements from that repository. I cant seem to be able to pull any data from the mocked repository. Any ideas how I could fix it? Mocking repository: Trying to use method from ModuleRepository cl…
PHP getting TIME difference in hours and minutes format
I’m currently new to PHP , and I am stuck on this problem. I cant seem to subtract the TIME IN from employee SCHEDULE PS: I also tried date_diff method, but it doesn’t work on me. THis is what my database looks like Answer I got the answer, i did it like this. Example: shiftstart 08:30:00AM and ti…
How to hide/not display PDF title in the toolbar
Is there any way to access metadata of PDF file I embedded using pdfobject.js? I would like to replace/change its title because it’s not corresponding to its filename. example is the snip below. filename of that is ‘D1000SPN.pdf’ which is different from the title displaying. I tried to searc…
SQLSTATE[HY000]: General error: 1005 Can’t create table `school`.`posts` (errno: 150 “Foreign key constraint is incorrectly formed”)
before everything, I tried hard many websites and forums to solve this problem until these posts related to this problem in StackOverflow, but I can’t solve the problem. I want to create to one to many relationship between Post and Category model but I get that error code. SQLSTATE[HY000]: General error…
Angular file input, How to get file on php?
I have recived all the infromation by my form, but I can´t get the name or size of the input file, so i can´t use $_FILES by php HTML – input file Angular – Add file input to form (formaA : FormGroup) Angular – Create request Angular – Send request Web – Json request PHP – …
Combine Two Queries into One?
I have a MySQL query that selects all audioids from a certain user in a subscribe table. I then have another query which takes this list of audioids and matches them against a field called opids in a table called audioposts. It then selects the titles from that audioposts table and joins the users from a user…
Only annotation mapping is supported by Maker Bundle
I have changed the configuration of my Symfony project to use PHP attributes with Doctrine in my Entities. I was really happy about this and wanted to give it a try. I have changed my doctrine.yaml from annotation to attribute and use attributes in my entities With this configuration my php bin/console do:sc:…
Your PHP installation appears to be missing MYSQL extension which is required by wordpress for redhat
I have been struggling with this error for quite sometimes and I am wondering if someone could help me get this running I have it keeps giving me the same error, I have removed and reinstalled php or mysql but didnt solve the issue. I also found other posts and i let the php.ini to have extension=mysqli still…