In this example case it would give
.25 * ( p(x,y+h,z,t) - p(x,y,z,t) + p(x-h,y,z,t) - p(x-y,y+h,z,t) ) /h^2
But more generally I would want to be able to take the result of as_finite_diff as a new expression I can differentiate :
a = as_finite_diff ( f(.....).diff(x) )
b= as_finite_diff( a.diff(y) )
....... And so on