jakubmisek on master
typo (compare)
jakubmisek on master
isset( PhpString ) fix ref htt… (compare)
jakubmisek on v1.1.5
Array
looks like something is doing echo
on an array value
Test::getMissingRequirements()
to figure out if it can run the test$missing
where it stores the missing requirements. This variable is initialized to an empty array at the start of the method.$missing
is filled suddenly with data (even though its initialized to an empty array at the start).$missing
variable. My theory is that somehow this $missing
overrides the local $missing
in the getMissingRequirements method. Still trying to figure out a minimal test case for this.testBasicModelRetrieval
Hey guys I'm working on the peachpie / wordpress-sdk implementation. Awesome work btw! I'm trying to deploy my project to a linux vps with ubuntu 18.04. I've been following this tutorial to get the server setup: https://linuxhint.com/install_dot_net_core_ubuntu/
But this tutorial shows how to create a new project on the server. My use case is that I already have a project. Any reading material or suggestions would be great.
Lastly, here is the tutorial I was following from Microsoft but they use CentOS and not Ubuntu.
https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/linux-apache?view=aspnetcore-3.0
**.resources
assembly even it does not exist.
0.9.44
will work
get_Item
is a "special" method which should not be callable directly. 0.9.500 behaves like C#, we have to implement .NET indexers before 1.0.0
(peachpiecompiler/peachpie#582)
->
operator which supposes to be an object but it isn't
@jakubmisek Alright, I have some time to investigate further. I have been logging the sizes of the arrays in the New and NewEmpty methods of PhpArray. It seems that after a certain point (still not sure what) the Singleton Empty PhpArray is not empty anymore:
NewEmpty: 0
NewEmpty: 0
NewEmpty: 0
NewEmpty: 0
NewEmpty: 0
NewEmpty: 0
NewEmpty: 0
NewEmpty: 0
NewEmpty: 0
NewEmpty: 0
NewEmpty: 0
NewEmpty: 0
New Array (2): 1
NewEmpty: 1
NewEmpty: 1
NewEmpty: 1
NewEmpty: 1
NewEmpty: 2
NewEmpty: 2
NewEmpty: 2
NewEmpty: 2
NewEmpty: 2
NewEmpty: 2
NewEmpty: 3
NewEmpty: 3
NewEmpty: 3
NewEmpty: 3
NewEmpty: 3
NewEmpty: 3
NewEmpty: 3
NewEmpty: 3
NewEmpty: 3
NewEmpty: 3
NewEmpty: 3
NewEmpty: 3
NewEmpty: 3
NewEmpty: 3
NewEmpty: 3
Format = Method: Array Count. For the NewEmpty method it will Count the Empty singleton.
I'm still trying to pin-point the exact line of code that is causing this to happen.