Depends on what you want to achieve.
I am ok in PHP, I read a lot of books about patterns etc, gave some talks, wrote several frameworks, know parts of the interpreter ... blablabla. The main thing about programming in any language is creating things.
This is the main concern.
The rest is more 'how to achieve it'. Personally I would rather focus on tests and not OOP. If you like to write functions using arrays, every datatype is a string, but the application does work and you can actually verify that it does what you want it to do. that's something to be desired, even if there is a lot of room to improve you actually have the most important part. A testable working programm.
That said, I do recommend learning OOP Designpatterns - that's the nomenclature we use across languages) also I do recommend learning Functional Programming in PHP (because you should know different ways to solve a problem).
For a beginner the idea of a function without sideeffects is more important to me than OOP.
Because you want to make sure your application works and the thing you put into the function should not change (reference) and the function should not change stuff 'automagically' in the background for convinience.
These are my thoughts about that. You should make up your own mind anyways.